1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-06 13:31:28 -05:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Qstick
5d9d3a84cc Fixed: Fix NullRef in Subtitle Service due to #4924
(cherry picked from commit 89ee7d4452ae3b476e24aede89b668a3df2344fc)
2022-08-20 23:02:49 +00:00

View File

@@ -5,6 +5,11 @@ namespace NzbDrone.Core.Extras.Subtitles
{
public class SubtitleFile : ExtraFile
{
public SubtitleFile()
{
LanguageTags = new List<string>();
}
public Language Language { get; set; }
}
}