Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/92bd547315469596516a9e5736085118a0d7ba00?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
2 deletions
@ -5,6 +5,11 @@ namespace NzbDrone.Web.Models
{
public class SearchItemModel
{
public SearchItemModel ( )
{
Details = "" ;
}
public int Id { get ; set ; }
public string ReportTitle { get ; set ; }
public string Indexer { get ; set ; }
@ -21,11 +21,11 @@
.AddColumn(new Column().DisplayAndSort("Quality", "QualityInt").Title("Quality").Width("80px"))
.AddColumn(new Column().DataProperty("SearchError").Title("Error"))
.AddColumn(new Column().DataProperty("return actionColumn(source, type, val);", true).Sortable(false).Searchable(false))
.AddColumn(new Column().DataProperty("Details").RenderFunction("return getDetails(row, val);").Visible(false ))
.AddColumn(new Column().DataProperty("Details").Sortable(false).Visible(false).RenderFunction("return details(row);" ))
.AddSorting(3, SortDirection.Desc))
<script type="text/javascript">
function getDetails(row, val ) {
function details(row ) {
var result = "<a href=\"" + row.aData["NzbInfoUrl"] + "\">Nzb Info</a><br/>" +
"<b>Proper: </b>" + row.aData["Proper"] + " <br/>" +
"<b>Age: </b>" + row.aData["Age"] + " days<br/>" +