diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-19 14:30:23 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-19 14:30:23 +0100 |
| commit | e63b18f17d3938a6c0848c1978c1290a86daa70f (patch) | |
| tree | 234d94dbcf6fe101e6ffde2fb74e08a09eb394bb /Emby.Server.Implementations/HttpServer | |
| parent | d116efe1f78c1ad1aa69221b3092800348d23503 (diff) | |
Reformat JustAMan review second pass changes.
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/HttpResultFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs index 08e43732d..8b60d61d4 100644 --- a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs +++ b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs @@ -714,7 +714,7 @@ namespace Emby.Server.Implementations.HttpServer { ifNoneMatchHeader = (ifNoneMatchHeader ?? string.Empty).Trim('\"'); - if (Guid.TryParse(ifNoneMatchHeader, out Guid ifNoneMatch) + if (Guid.TryParse(ifNoneMatchHeader, out var ifNoneMatch) && cacheKey.Equals(ifNoneMatch)) { return true; |
