Skip to content

Commit

Permalink
Update Jellyfin.Plugin.AniList/Providers/AniList/AniListAnimeImagePro…
Browse files Browse the repository at this point in the history
…vider.cs

Co-authored-by: JPVenson <[email protected]>
  • Loading branch information
HansLehnert and JPVenson authored Sep 2, 2024
1 parent 2f31bb1 commit 1427eb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public async Task<IEnumerable<RemoteImageInfo>> GetImages(string aid, Cancellati
public async Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
{
using var httpClient = Plugin.Instance.GetHttpClient();
return await httpClient.GetAsync(url).ConfigureAwait(false);
return await httpClient.GetAsync(url, cancellationToken).ConfigureAwait(false);
}
}
}

0 comments on commit 1427eb0

Please sign in to comment.