mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
Fix trim input
This commit is contained in:
parent
94789860b1
commit
df5e87409a
1 changed files with 1 additions and 1 deletions
|
@ -535,7 +535,7 @@ namespace Emby.Server.Implementations.HttpServer
|
|||
|
||||
var contentType = options.ContentType;
|
||||
var etag = requestContext.Headers.Get("If-None-Match");
|
||||
var cacheKey = etag != null ? new Guid(etag.Trim("\"")) : Guid.Empty;
|
||||
var cacheKey = etag != null ? new Guid(etag.Trim('\"')) : Guid.Empty;
|
||||
if (!cacheKey.Equals(Guid.Empty))
|
||||
{
|
||||
var key = cacheKey.ToString("N");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue