mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-02 15:14:59 +02:00
check ffmpeg stream for null
This commit is contained in:
parent
b4a756780e
commit
ff22828dd8
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue