fix(go): widen lyrics priority grace to 5s so priority provider wins

Apple Music (priority) was losing to LRCLIB when slightly slower than the
1.2s grace window. Widen to 5s so a slower priority provider still wins,
while still bounding the wait if it hangs/fails.
This commit is contained in:
zarzet
2026-06-29 06:47:04 +07:00
parent e0e28aee38
commit bd14c7dc63
+1 -1
View File
@@ -23,7 +23,7 @@ const (
const (
lyricsProviderUnavailableCooldown = 10 * time.Minute
lyricsProviderParallelism = 3
lyricsProviderPriorityGrace = 1200 * time.Millisecond
lyricsProviderPriorityGrace = 5000 * time.Millisecond
)
const (