fix(jellyfin): sync errors

This commit is contained in:
Samuel Bartík
2022-06-05 17:07:27 +02:00
committed by GitHub
parent 6458c054c0
commit d1dbd6e3b9

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}`,