diff --git a/src/renderer/utils/jellyfin.ts b/src/renderer/utils/jellyfin.ts index e0156da72..b9e15bb26 100644 --- a/src/renderer/utils/jellyfin.ts +++ b/src/renderer/utils/jellyfin.ts @@ -23,7 +23,7 @@ export const getJellyfinStreamUrl = ( `${auth.url}/audio` + `/${song.remoteId}/universal` + `?userId=${auth.userId}` + - `&deviceId=sonixd_${deviceId}` + + `&deviceId=Feishin_${deviceId}` + `&audioCodec=aac` + `&api_key=${auth.token}` + `&playSessionId=${deviceId}` + diff --git a/src/renderer/utils/subsonic.ts b/src/renderer/utils/subsonic.ts index 28bdc4b13..2fc7b0972 100644 --- a/src/renderer/utils/subsonic.ts +++ b/src/renderer/utils/subsonic.ts @@ -10,6 +10,6 @@ export const getSubsonicStreamUrl = ( `?id=${song.remoteId}` + `&${auth.token}` + `&v=1.13.0` + - `&c=sonixd_${deviceId}` + `&c=Feishin_${deviceId}` ); };