diff --git a/TMDbLib/Client/TMDbClientTvShows.cs b/TMDbLib/Client/TMDbClientTvShows.cs index 636840ed..4f7ae639 100644 --- a/TMDbLib/Client/TMDbClientTvShows.cs +++ b/TMDbLib/Client/TMDbClientTvShows.cs @@ -159,9 +159,10 @@ public async Task GetTvShowAsync(int id, TvShowMethods extraMethods = Tv return item; } - public async Task GetTvShowChangesAsync(int id, CancellationToken cancellationToken = default) + public async Task> GetTvShowChangesAsync(int id, int page = 0, DateTime? startDate = null, DateTime? endDate = null, CancellationToken cancellationToken = default) { - return await GetTvShowMethodInternal(id, TvShowMethods.Changes, cancellationToken: cancellationToken).ConfigureAwait(false); + ChangesContainer changesContainer = await GetChangesInternal("tv", page, id, startDate, endDate, cancellationToken).ConfigureAwait(false); + return changesContainer.Changes; } public async Task> GetTvShowContentRatingsAsync(int id, CancellationToken cancellationToken = default) @@ -361,4 +362,4 @@ public async Task TvShowSetRatingAsync(int tvShowId, double rating, Cancel return item.StatusCode == 1 || item.StatusCode == 12; } } -} \ No newline at end of file +}