mirror of
https://github.com/Radarr/Radarr
synced 2024-12-22 07:52:34 +00:00
Fixed: Fix NullRef in Subtitle Service due to #4924
(cherry picked from commit 89ee7d4452ae3b476e24aede89b668a3df2344fc)
This commit is contained in:
parent
a4ddae0ccc
commit
5d9d3a84cc
1 changed files with 5 additions and 0 deletions
|
@ -5,6 +5,11 @@ namespace NzbDrone.Core.Extras.Subtitles
|
|||
{
|
||||
public class SubtitleFile : ExtraFile
|
||||
{
|
||||
public SubtitleFile()
|
||||
{
|
||||
LanguageTags = new List<string>();
|
||||
}
|
||||
|
||||
public Language Language { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue