Merge pull request #127 from sambartik/fix-sync-errors

fix(jellyfin): fixes sync errors re-introduced in previous commits
This commit is contained in:
Fallenbagel
2022-06-05 20:27:00 +05:00
committed by GitHub

View File

@@ -224,9 +224,7 @@ class JellyfinAPI {
`/Users/${this.userId}/Items/Latest?Limit=12&ParentId=${id}`
);
return contents.data.filter(
(item: JellyfinLibraryItem) => item.LocationType !== 'Virtual'
);
return contents.data;
} catch (e) {
logger.error(
`Something went wrong while getting library content from the Jellyfin server: ${e.message}`,
@@ -242,9 +240,7 @@ class JellyfinAPI {
`/Users/${this.userId}/Items/${id}`
);
return contents.data.filter(
(item: JellyfinLibraryItem) => item.LocationType !== 'Virtual'
);
return contents.data;
} catch (e) {
logger.error(
`Something went wrong while getting library content from the Jellyfin server: ${e.message}`,