fix username param on subsonic getUser (#1362)

This commit is contained in:
jeffvli
2025-12-10 10:18:11 -08:00
parent 16d656f010
commit 27eebe474e
2 changed files with 2 additions and 2 deletions
@@ -1477,7 +1477,7 @@ export const SubsonicController: InternalControllerEndpoint = {
const res = await ssApiClient(apiClientProps).getUser({ const res = await ssApiClient(apiClientProps).getUser({
query: { query: {
id: query.id, username: query.id,
}, },
}); });
+1 -1
View File
@@ -8,7 +8,7 @@ const baseResponse = z.object({
}); });
const userParameters = z.object({ const userParameters = z.object({
id: z.string(), username: z.string(),
}); });
const user = z.object({ const user = z.object({