mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 19:12:46 +01:00
Update WebSocketSharpRequest.cs
This commit is contained in:
parent
10e381f66f
commit
0676d1c2f4
1 changed files with 2 additions and 3 deletions
|
|
@ -208,9 +208,8 @@ namespace Emby.Server.Implementations.SocketSharp
|
|||
|
||||
private static string GetQueryStringContentType(HttpRequest httpReq)
|
||||
{
|
||||
string formatStr = httpReq.Query["format"].ToString();
|
||||
ReadOnlySpan<char> format = formatStr;
|
||||
if (formatStr == null)
|
||||
ReadOnlySpan<char> format = httpReq.Query["format"].ToString();
|
||||
if (formatStr == ReadOnlySpan<char>.Empty)
|
||||
{
|
||||
const int FormatMaxLength = 4;
|
||||
ReadOnlySpan<char> pi = httpReq.Path.ToString();
|
||||
|
|
|
|||
Loading…
Reference in a new issue