Compare commits

..

1 Commits

Author SHA1 Message Date
jeffvli b8ce0aac24 Fix username on navidrome login check 2022-11-21 15:15:17 -08:00
+1 -1
View File
@@ -64,7 +64,7 @@ const remoteServerLogin = async (options: {
});
return {
altToken: `u=${res.name}&s=${res.subsonicSalt}&t=${res.subsonicToken}`,
altToken: `u=${res.username}&s=${res.subsonicSalt}&t=${res.subsonicToken}`,
remoteUserId: res.id,
token: res.token,
type: ServerType.NAVIDROME,