Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/8267be0a488de365d527c1c472f3dd3996988c40/NzbDrone.Web/Views/Update/Index.cshtml You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Web/Views/Update/Index.cshtml

29 lines
627 B

@model NzbDrone.Web.Models.UpdateModel
@{ViewBag.Title = "Update";}
@if (Model.UpdatePackage == null)
{
<h2>
There are no updates available.</h2>
}
else
{
<h2>
Available Update: @Model.UpdatePackage.Version
@Ajax.ActionLink("Update", "StartUpdate", "Update", null)
</h2>
}
@if (Model.LogFiles.Count != 0)
{
<h3>
Update Logs (@Model.LogFolder)
</h3>
<br />
foreach (var log in Model.LogFiles)
{
<div>
<a href="@Url.Action("ViewLog", "Update", new { filePath = log.Value })">
@log.Key.ToString("MMM dd, hh:mm tt")</a>
</div>
}
}