From a1f1d87cd099dfe178733c5f5c2e671e7f661c7d Mon Sep 17 00:00:00 2001 From: Dustin Date: Tue, 4 Aug 2026 16:37:55 +0200 Subject: [PATCH] =?UTF-8?q?v2.49.2=20=E2=80=94=20Netease-Suche=20auf=20fun?= =?UTF-8?q?ktionierenden=20Endpoint=20umgestellt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /api/search/get/web liefert seit Netease-Update nur noch verschlüsselte Antworten (getestet) - Umstellung auf /api/search/get (public, kein Key) — liefert result.songs[].id im JSON - Lyric-Endpoint (/api/song/lyric) unverändert, funktioniert - Kette curl-verifiziert: Suche → Song-ID → LRC-Text - flutter analyze 0 Issues, Tests 35/35 --- lib/services/lyrics_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/lyrics_service.dart b/lib/services/lyrics_service.dart index 574a39d..0824b81 100644 --- a/lib/services/lyrics_service.dart +++ b/lib/services/lyrics_service.dart @@ -22,7 +22,7 @@ class LyricsService { factory LyricsService() => _instanz; LyricsService._(); - static const _neteaseSearchUrl = 'https://music.163.com/api/search/get/web'; + static const _neteaseSearchUrl = 'https://music.163.com/api/search/get'; static const _neteaseLyricUrl = 'https://music.163.com/api/song/lyric'; static const _timeout = Duration(seconds: 8);