Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/ebad87b81bd788272703aab772123f86b4448b47
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
7 deletions
@ -38,11 +38,16 @@ namespace NzbDrone.Web.Controllers
}
public ActionResult Index ( )
{
return View ( ) ;
}
[HttpGet]
public ActionResult Series ( )
{
var series = GetSeriesModels ( _seriesProvider . GetAllSeriesWithEpisodeCount ( ) ) ;
var serialized = new JavaScriptSerializer ( ) . Serialize ( series ) ;
return View ( ( object ) serialized ) ;
return Json( new { aaData = series } , JsonRequestBehavior . AllowGet ) ;
}
public ActionResult Edit ( int seriesId )
@ -1,5 +1,4 @@
@using NzbDrone.Web.Helpers
@model string
@{ViewBag.Title = "NzbDrone";}
@section HeaderContent
@ -76,9 +75,7 @@
<th style="width: 100px">Episodes</th>
@*Commands Column*@
<th style="width: 80px">
</th>
<th style="width: 80px"></th>
</tr>
</thead>
<tbody>
@ -111,8 +108,9 @@
$('#seriesGrid').removeClass('hidden-grid');
oTable = $('.dataTablesGrid').dataTable({
"sAjaxSource": "Series/Series",
"bServerSide": false,
"bShowAll": false,
"aaData": @Html.Raw(Model),
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,