diff options
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/ResponseFilter.cs')
| -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; |
