Merge remote-tracking branch 'upstream/master' into warn-259810

This commit is contained in:
Cody Robibero
2021-09-03 06:56:45 -06:00
47 changed files with 1000 additions and 343 deletions

View File

@@ -255,6 +255,11 @@ namespace MediaBrowser.Model.Entities
attributes.Add(string.IsNullOrEmpty(LocalizedForced) ? "Forced" : LocalizedForced);
}
if (!string.IsNullOrEmpty(Codec))
{
attributes.Add(Codec.ToUpperInvariant());
}
if (!string.IsNullOrEmpty(Title))
{
var result = new StringBuilder(Title);