update generated titles for subtitles

This commit is contained in:
Luke Pulverenti 2016-06-18 13:27:13 -04:00
parent c3baf28246
commit 29d4305732
1 changed files with 5 additions and 18 deletions

View File

@ -75,15 +75,12 @@ namespace MediaBrowser.Model.Entities
{
attributes.Add(StringHelper.ToStringCultureInvariant(Channels.Value) + " ch");
}
string name = string.Join(" ", attributes.ToArray());
if (IsDefault)
{
name += " (D)";
attributes.Add("Default");
}
return name;
return string.Join(" ", attributes.ToArray());
}
if (Type == MediaStreamType.Subtitle)
@ -94,27 +91,17 @@ namespace MediaBrowser.Model.Entities
{
attributes.Add(StringHelper.FirstToUpper(Language));
}
if (!string.IsNullOrEmpty(Codec))
{
attributes.Add(Codec);
}
string name = string.Join(" ", attributes.ToArray());
if (IsDefault)
{
name += " (D)";
attributes.Add("Default");
}
if (IsForced)
{
name += " (F)";
attributes.Add("Forced");
}
if (IsExternal)
{
name += " (EXT)";
}
string name = string.Join(" ", attributes.ToArray());
return name;
}