mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix webp compatibility testing (#5787)
This commit is contained in:
parent
cc59abd54e
commit
dc4714fe40
@ -1859,17 +1859,15 @@ namespace Jellyfin.Api.Controllers
|
||||
|
||||
private ImageFormat[] GetClientSupportedFormats()
|
||||
{
|
||||
var acceptTypes = Request.Headers[HeaderNames.Accept];
|
||||
var supportedFormats = new List<string>();
|
||||
if (acceptTypes.Count > 0)
|
||||
var supportedFormats = Request.Headers.GetCommaSeparatedValues(HeaderNames.Accept);
|
||||
for (var i = 0; i < supportedFormats.Length; i++)
|
||||
{
|
||||
foreach (var type in acceptTypes)
|
||||
// Remove charsets etc. (anything after semi-colon)
|
||||
var type = supportedFormats[i];
|
||||
int index = type.IndexOf(';', StringComparison.Ordinal);
|
||||
if (index != -1)
|
||||
{
|
||||
int index = type.IndexOf(';', StringComparison.Ordinal);
|
||||
if (index != -1)
|
||||
{
|
||||
supportedFormats.Add(type.Substring(0, index));
|
||||
}
|
||||
supportedFormats[i] = type.Substring(0, index);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user