mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Avoid including stray commas in HLS codecs field
This commit is contained in:
parent
75bb127599
commit
542185fba4
@ -1496,9 +1496,14 @@ namespace Jellyfin.Api.Controllers
|
||||
|
||||
StringBuilder codecs = new StringBuilder();
|
||||
|
||||
codecs.Append(videoCodecs)
|
||||
.Append(',')
|
||||
.Append(audioCodecs);
|
||||
codecs.Append(videoCodecs);
|
||||
|
||||
if (!string.IsNullOrEmpty(videoCodecs) && !string.IsNullOrEmpty(audioCodecs))
|
||||
{
|
||||
codecs.Append(',');
|
||||
}
|
||||
|
||||
codecs.Append(audioCodecs);
|
||||
|
||||
if (codecs.Length > 1)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user