v2.49.2 — Netease-Suche auf funktionierenden Endpoint umgestellt

- /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
This commit is contained in:
Dustin
2026-08-04 16:37:55 +02:00
parent 19b115b000
commit a1f1d87cd0
+1 -1
View File
@@ -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);