diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-25 17:50:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-25 17:50:56 -0400 |
| commit | 0b721f2e056f00fd16fc057405796bdb83297e45 (patch) | |
| tree | e21ff39a270177ff31c449fc862d2791526b3af6 /MediaBrowser.Server.Implementations/HttpServer | |
| parent | f511cb70ad8de9adbb267bc80a693d2e74b330ac (diff) | |
fix video player time display
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/ResponseFilter.cs | 2 |
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; |
