fix(tv): refresh retained spotlight metadata

This commit is contained in:
edde746
2026-07-15 06:40:59 +02:00
parent 3168f6327f
commit ea4bd21977
2 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ class TvSpotlightController extends ValueNotifier<MediaItem?> {
fallback ??= hub.items.first;
if (current == null) continue;
for (final item in hub.items) {
if (item.globalKey == current.globalKey) return current;
if (item.globalKey == current.globalKey) return item;
}
}
return fallback;