Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/da745e663c33938f7e4de57885cd1b60aed66495 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Log the request

pull/3049/head
tidusjar 6 years ago
parent e8fafa2f59
commit da745e663c

@ -134,11 +134,12 @@ namespace Ombi.Api
}
}
private static void AddHeadersBody(Request request, HttpRequestMessage httpRequestMessage)
private void AddHeadersBody(Request request, HttpRequestMessage httpRequestMessage)
{
// Add the Json Body
if (request.JsonBody != null)
{
LogDebugContent("REQUEST: " + request.JsonBody);
httpRequestMessage.Content = new JsonContent(request.JsonBody);
httpRequestMessage.Content.Headers.ContentType =
new MediaTypeHeaderValue("application/json"); // Emby connect fails if we have the charset in the header

Loading…
Cancel
Save