Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/926bdef527301a9aebc281348fa6a8325d3bff90/NzbDrone.Web/Views/AddSeries/RootList.cshtml You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Web/Views/AddSeries/RootList.cshtml

15 lines
339 B

@model IEnumerable<String>
@if (!Model.Any())
{
<div class="actionButton delete">
<span>You have no root folders added.</span>
</div>
}
@foreach (var root in Model)
{
<div class="actionButton delete">
<img src="../../Content/Images/x_16.png" alt="delete" id='@root'/>
<span>@root</span>
</div>
}