aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-25 17:50:56 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-25 17:50:56 -0400
commit0b721f2e056f00fd16fc057405796bdb83297e45 (patch)
treee21ff39a270177ff31c449fc862d2791526b3af6 /MediaBrowser.Server.Implementations/HttpServer
parentf511cb70ad8de9adbb267bc80a693d2e74b330ac (diff)
fix video player time display
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/ResponseFilter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/ResponseFilter.cs b/MediaBrowser.Server.Implementations/HttpServer/ResponseFilter.cs
index f9184f6d1..0da34efc6 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/ResponseFilter.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/ResponseFilter.cs
@@ -33,7 +33,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
if (_denyIframeEmbedding())
{
- res.AddHeader("X-Frame-Options", "DENY");
+ res.AddHeader("X-Frame-Options", "SAMEORIGIN");
}
var exception = dto as Exception;