Browse Source

fix parameter name

pull/2821/head
Jason Dove 6 months ago
parent
commit
4d2617ff87
No known key found for this signature in database
  1. 4
      ErsatzTV.Scanner/Core/Jellyfin/JellyfinCollectionScanner.cs

4
ErsatzTV.Scanner/Core/Jellyfin/JellyfinCollectionScanner.cs

@ -92,7 +92,7 @@ public class JellyfinCollectionScanner : IJellyfinCollectionScanner
private async Task<bool> SyncCollectionItems( private async Task<bool> SyncCollectionItems(
string address, string address,
string apiKey, string authorizationHeader,
int mediaSourceId, int mediaSourceId,
JellyfinCollection collection) JellyfinCollection collection)
{ {
@ -101,7 +101,7 @@ public class JellyfinCollectionScanner : IJellyfinCollectionScanner
// get collection items from JF // get collection items from JF
IAsyncEnumerable<Tuple<MediaItem, int>> items = _jellyfinApiClient.GetCollectionItems( IAsyncEnumerable<Tuple<MediaItem, int>> items = _jellyfinApiClient.GetCollectionItems(
address, address,
apiKey, authorizationHeader,
mediaSourceId, mediaSourceId,
collection.ItemId); collection.ItemId);

Loading…
Cancel
Save