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

Add response size to http responses

(cherry picked from commit d899225509f04a9b6c72da19c7d63ff53498de22)
pull/2722/head
Taloth Saldono 3 years ago committed by Qstick
parent 0ccbe1c5f8
commit 5a69bf42f6

@ -81,7 +81,7 @@ namespace NzbDrone.Common.Http
public override string ToString()
{
var result = string.Format("Res: [{0}] {1}: {2}.{3}", Request.Method, Request.Url, (int)StatusCode, StatusCode);
var result = string.Format("Res: [{0}] {1}: {2}.{3} ({4} bytes)", Request.Method, Request.Url, (int)StatusCode, StatusCode, ResponseData?.Length ?? 0);
if (HasHttpError && Headers.ContentType.IsNotNullOrWhiteSpace() && !Headers.ContentType.Equals("text/html", StringComparison.InvariantCultureIgnoreCase))
{

Loading…
Cancel
Save