mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-28 11:28:27 +01:00
update hls query string
This commit is contained in:
@@ -1615,7 +1615,12 @@ namespace MediaBrowser.Model.Dlna
|
||||
if (!string.IsNullOrWhiteSpace(value))
|
||||
{
|
||||
// change from split by | to comma
|
||||
item.SetOption(qualifier, "profile", string.Join(",", value.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries)));
|
||||
|
||||
// strip spaces to avoid having to encode
|
||||
var values = value
|
||||
.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
|
||||
item.SetOption(qualifier, "profile", string.Join(",", values));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user