mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
Adds null check on studio/network name
This commit is contained in:
parent
595a68b822
commit
d39decf918
1 changed files with 4 additions and 1 deletions
|
@ -355,7 +355,10 @@ namespace MediaBrowser.Providers.TV.TheTVDB
|
|||
series.AddGenre(genre);
|
||||
}
|
||||
|
||||
series.AddStudio(tvdbSeries.Network);
|
||||
if (!String.IsNullOrEmpty(tvdbSeries.Network))
|
||||
{
|
||||
series.AddStudio(tvdbSeries.Network);
|
||||
}
|
||||
|
||||
if (result.Item.Status.HasValue && result.Item.Status.Value == SeriesStatus.Ended)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue