protected override async Task LoadPage(int?page = null, int?limit = null)
        {
            Busy.SetBusy(true, "Loading popular shows...");
            var traktPopularShows = await Shows.GetPopularShowsAsync(DEFAULT_EXTENDED_INFO, whichPage : page, limitPerPage : limit);

            if (traktPopularShows.Items != null)
            {
                PopularShows = traktPopularShows.Items;
                SetPaginationValues(traktPopularShows);
            }

            Busy.SetBusy(false);
        }