fix(tv): include episodes in video content filtering

This commit is contained in:
zhubowen
2026-01-07 19:33:35 +08:00
parent 5ed2532bf1
commit da1a4e7aa8
+1 -1
View File
@@ -1216,7 +1216,7 @@ class PlexClient {
// Filter out non-video content types and tag with server info
final videoItems = hub.items
.where((item) {
return item.isMovie || item.isShow;
return item.isMovie || item.isShow || item.isEpisode;
})
.map((item) => item.copyWith(serverId: serverId, serverName: serverName))
.toList();