Update WebSocketSharpRequest.cs

This commit is contained in:
Bond-009 2020-05-26 19:33:20 +02:00 committed by GitHub
parent 10e381f66f
commit 0676d1c2f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -208,9 +208,8 @@ namespace Emby.Server.Implementations.SocketSharp
private static string GetQueryStringContentType(HttpRequest httpReq) private static string GetQueryStringContentType(HttpRequest httpReq)
{ {
string formatStr = httpReq.Query["format"].ToString(); ReadOnlySpan<char> format = httpReq.Query["format"].ToString();
ReadOnlySpan<char> format = formatStr; if (formatStr == ReadOnlySpan<char>.Empty)
if (formatStr == null)
{ {
const int FormatMaxLength = 4; const int FormatMaxLength = 4;
ReadOnlySpan<char> pi = httpReq.Path.ToString(); ReadOnlySpan<char> pi = httpReq.Path.ToString();