Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/feb947fb746e498403a673582780309d19920598
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
17 additions and
4 deletions
@ -103,6 +103,7 @@
<Compile Include= "EnsureThat\Resources\ExceptionMessages.Designer.cs" />
<Compile Include= "EnsureThat\StringExtensions.cs" />
<Compile Include= "EnsureThat\TypeParam.cs" />
<Compile Include= "Serializer\JsonSerializer.cs" />
<Compile Include= "Messaging\CommandCompletedEvent.cs" />
<Compile Include= "Messaging\CommandStartedEvent.cs" />
<Compile Include= "Messaging\CommandFailedEvent.cs" />
@ -120,7 +121,6 @@
<Compile Include= "Expansive\Tree.cs" />
<Compile Include= "Expansive\TreeNode.cs" />
<Compile Include= "Expansive\TreeNodeList.cs" />
<Compile Include= "Serializer\JsonSerializer.cs" />
<Compile Include= "Instrumentation\VersionLayoutRenderer.cs" />
<Compile Include= "Messaging\MessageExtensions.cs" />
<Compile Include= "Messaging\TestCommand.cs" />
@ -25,7 +25,7 @@ define(['app'], function () {
name : 'airDate' ,
label : 'Air Date' ,
editable : false ,
cell : 'date time '
cell : 'date '
//formatter: new Backgrid.AirDateFormatter()
}
] ,
@ -1,7 +1,20 @@
"use strict" ;
define ( [ 'app' , 'Series/SeasonModel' ] , function ( ) {
NzbDrone . Series . SeasonCollection = Backbone . Collection. extend ( {
NzbDrone . Series . SeasonCollection = Backbone . Pageable Collection. extend ( {
url : NzbDrone . Constants . ApiRoot + '/season' ,
model : NzbDrone . Series . SeasonModel
model : NzbDrone . Series . SeasonModel ,
mode : 'client' ,
state : {
sortKey : 'seasonNumber' ,
order : 1 ,
pageSize : 1000000
} ,
queryParams : {
sortKey : null ,
order : null
}
} ) ;
} ) ;