From 6763f4439d5fd373ab51eb627ec52f87e74dc22f Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 26 Oct 2022 16:13:32 -0700 Subject: [PATCH] Update package name references --- src/renderer/utils/jellyfin.ts | 2 +- src/renderer/utils/subsonic.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}` ); };