This commit is contained in:
Fredrik Burmester
2024-08-16 18:49:15 +02:00
parent 1f0ff1594b
commit 84d7983df7
2 changed files with 1 additions and 3 deletions

View File

@@ -75,8 +75,6 @@ export const NextEpisodeButton: React.FC<Props> = ({
startIndex: type === "next" ? item.IndexNumber : item.IndexNumber - 2,
});
console.log("NextEpisode ~", type, response.data);
return (response.data.Items?.[0] as BaseItemDto) || null;
},
enabled: Boolean(api && user?.Id && item?.Id && item.SeasonId),

View File

@@ -56,7 +56,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
setJellyfin(
() =>
new Jellyfin({
clientInfo: { name: "Streamyfin", version: "0.4.2" },
clientInfo: { name: "Streamyfin", version: "0.6.0" },
deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id },
}),
);