We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 200b8a4 commit 5b99629Copy full SHA for 5b99629
1 file changed
src/lib/jellyfin-api.ts
@@ -1,5 +1,5 @@
1
import { Api, Jellyfin } from "@jellyfin/sdk";
2
-import { generateGuid } from "./utils";
+
3
import {
4
getCacheValue,
5
JELLYFIN_AUTH_TOKEN_CACHE_KEY,
@@ -92,7 +92,7 @@ export const authenticateByAuthToken = (
92
},
93
deviceInfo: {
94
name: "Jellyfin-Wrapped",
95
- id: generateGuid(),
+ id: "Jellyfin-Wrapped",
96
97
});
98
api = jellyfin.createApi(serverUrl, jellyfinApiKey);
@@ -114,7 +114,7 @@ export const authenticateByUserName = async (
114
115
116
117
118
119
120
console.log("Connecting to server...", { serverUrl, username });
0 commit comments