mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-25 11:34:43 +01:00
update channel db
This commit is contained in:
@@ -1397,7 +1397,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
var val = query.IsHD.Value;
|
||||
var video = item as Video;
|
||||
|
||||
if (video == null || val != video.IsHD)
|
||||
if (video == null || !video.IsHD.HasValue || val != video.IsHD)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user