aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2019-08-09 23:26:10 -0700
committerGitHub <noreply@github.com>2019-08-09 23:26:10 -0700
commitb5f3f28f41d9ff5e2edbb9a6f9f70accc2f7de05 (patch)
tree3da2f4b01f133efc2da1b055bbfffdcdff6a32ac /MediaBrowser.Api/Playback/BaseStreamingService.cs
parentf8ad6655fbf2909bd3368ceac4b7947bea41b009 (diff)
parent0116190050be69b2ac61d46681f2c7478a1318b9 (diff)
Merge pull request #1578 from Bond-009/httpresponse
Replace custom code with Asp.Net Core code
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index d9f4a583c..77b733dc9 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -1019,7 +1019,7 @@ namespace MediaBrowser.Api.Playback
foreach (var item in responseHeaders)
{
- Request.Response.AddHeader(item.Key, item.Value);
+ Request.Response.Headers.Add(item.Key, item.Value);
}
}