mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-02 00:18:30 +00:00
check ffmpeg stream for null
This commit is contained in:
@@ -244,7 +244,7 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
/// <param name="data">The data.</param>
|
||||
private void FetchWtvInfo(Video video, MediaInfoResult data)
|
||||
{
|
||||
if (data.format.tags == null)
|
||||
if (data.format == null || data.format.tags == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user