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