File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
src/main/java/com/battlelancer/seriesguide/traktapi Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,7 @@ dependencies {
270270
271271 implementation(libs.tmdb.java)
272272 implementation(libs.trakt.java) {
273+ isChanging = true
273274 exclude(group = " org.threeten" , module = " threetenbp" ) // using ThreeTenABP instead
274275 }
275276
Original file line number Diff line number Diff line change @@ -146,12 +146,19 @@ object TraktTools4 {
146146 suspend fun getShowsOnWatchlist (
147147 traktSync : Sync
148148 ): TraktNonNullResponse <List <BaseShow >> {
149- return awaitTraktCallNonNull(
150- // Use Extended.FULL to get show metadata
151- traktSync.watchlistShows(Extended .FULL ),
149+ // return awaitTraktCallNonNull(
150+ // // Use Extended.FULL to get show metadata
151+ // traktSync.watchlistShows(Extended.FULL),
152+ // "get shows on watchlist",
153+ // reportIsNotVip = true // Should work even if not VIP
154+ // )
155+ return fetchAllPages(
152156 " get shows on watchlist" ,
153157 reportIsNotVip = true // Should work even if not VIP
154- )
158+ ) { page ->
159+ // Use Extended.FULL to get show metadata
160+ traktSync.watchlistShows(page, 2 , Extended .FULL )
161+ }
155162 }
156163
157164 /* *
You can’t perform that action at this time.
0 commit comments