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

Fix UtcConverter - already UTC back from DB

pull/38/head
ta264 5 years ago
parent 45d49117ca
commit 46b1c933a3

@ -15,7 +15,7 @@ namespace NzbDrone.Core.Datastore.Converters
public override DateTime Parse(object value)
{
return DateTime.SpecifyKind((DateTime)value, DateTimeKind.Utc);
return (DateTime)value;
}
}

Loading…
Cancel
Save