From 769795daaa894e761386ac1da3d7b82446dffb05 Mon Sep 17 00:00:00 2001 From: mtvpls Date: Thu, 8 Jan 2026 21:28:35 +0800 Subject: [PATCH] getPlayInfo post -> get --- src/lib/emby.client.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/lib/emby.client.ts b/src/lib/emby.client.ts index c5aba74..52e4f22 100644 --- a/src/lib/emby.client.ts +++ b/src/lib/emby.client.ts @@ -444,15 +444,8 @@ export class EmbyClient { try { const response = await fetch(url, { - method: 'POST', + method: 'GET', headers: this.getHeaders(), - body: JSON.stringify({ - DeviceProfile: { - MaxStreamingBitrate: 120000000, - MaxStaticBitrate: 100000000, - MusicStreamingTranscodingBitrate: 384000, - }, - }), }); if (!response.ok) {