save additional info to recording nfo's

This commit is contained in:
Luke Pulverenti
2016-11-26 19:40:15 -05:00
parent d54c11fb74
commit 921ec9cd11
6 changed files with 221 additions and 41 deletions

View File

@@ -414,9 +414,9 @@ namespace Emby.Server.Implementations.HttpServer
httpRes.StatusCode = 200;
httpRes.AddHeader("Access-Control-Allow-Origin", "*");
httpRes.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, PATCH, OPTIONS");
httpRes.AddHeader("Access-Control-Allow-Headers",
"Content-Type, Authorization, Range, X-MediaBrowser-Token, X-Emby-Authorization");
httpRes.ContentType = "text/html";
httpRes.AddHeader("Access-Control-Allow-Headers", "Content-Type, Authorization, Range, X-MediaBrowser-Token, X-Emby-Authorization");
httpRes.ContentType = "text/plain";
Write(httpRes, string.Empty);
return;
}