aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/ResponseFilter.cs
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-05-03 01:04:19 -0400
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-05-03 01:04:19 -0400
commit1c06111497f0ecfa6ca374599b5641601b004077 (patch)
tree8d83bd03b76f87f429ab82a54fd73bc029eae6f0 /Emby.Server.Implementations/HttpServer/ResponseFilter.cs
parent7e467f9faa18168ddff0607751f3929e4e3e0285 (diff)
parent2bf3dee4c4fe56537c542bcc0c9df562552fb74d (diff)
Merge remote-tracking branch 'upstream/master' into integration-tests
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/ResponseFilter.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/ResponseFilter.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/HttpServer/ResponseFilter.cs b/Emby.Server.Implementations/HttpServer/ResponseFilter.cs
index 5e0466629..4089aa578 100644
--- a/Emby.Server.Implementations/HttpServer/ResponseFilter.cs
+++ b/Emby.Server.Implementations/HttpServer/ResponseFilter.cs
@@ -82,6 +82,10 @@ namespace Emby.Server.Implementations.HttpServer
{
return null;
}
+ else if (inString.Length == 0)
+ {
+ return inString;
+ }
var newString = new StringBuilder(inString.Length);