protected override async Task LoadPage(int?page = null, int?limit = null) { Busy.SetBusy(true, "Loading most played shows..."); var traktMostPlayedMovies = await Shows.GetMostPlayedShowsAsync(DEFAULT_EXTENDED_INFO, whichPage : page, limitPerPage : limit); if (traktMostPlayedMovies.Items != null) { MostPlayedShows = traktMostPlayedMovies.Items; SetPaginationValues(traktMostPlayedMovies); } Busy.SetBusy(false); }