Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/e67136ae64eac84eac9e30bc37dea5a6e7dbe20d?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
27 additions and
5 deletions
@ -10,9 +10,9 @@ namespace NzbDrone.Core.SeriesStats
public class SeriesStatisticsService : ISeriesStatisticsService
public class SeriesStatisticsService : ISeriesStatisticsService
{
{
private readonly SeriesStatisticsRepository _seriesStatisticsRepository ;
private readonly I SeriesStatisticsRepository _seriesStatisticsRepository ;
public SeriesStatisticsService ( SeriesStatisticsRepository seriesStatisticsRepository )
public SeriesStatisticsService ( I SeriesStatisticsRepository seriesStatisticsRepository )
{
{
_seriesStatisticsRepository = seriesStatisticsRepository ;
_seriesStatisticsRepository = seriesStatisticsRepository ;
}
}
@ -35,6 +35,9 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-offset-1 col-md-5 delete-files-info x-delete-files-info">
{{ episodeFileCount }} episode files will be deleted
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@ -9,11 +9,13 @@ define(
template : 'Series/Delete/DeleteSeriesTemplate' ,
template : 'Series/Delete/DeleteSeriesTemplate' ,
events : {
events : {
'click .x-confirm-delete' : 'removeSeries'
'click .x-confirm-delete' : 'removeSeries' ,
'change .x-delete-files' : 'changeDeletedFiles'
} ,
} ,
ui : {
ui : {
deleteFiles : '.x-delete-files' ,
deleteFiles : '.x-delete-files' ,
deleteFilesInfo : '.x-delete-files-info' ,
indicator : '.x-indicator'
indicator : '.x-indicator'
} ,
} ,
@ -29,6 +31,18 @@ define(
vent . trigger ( vent . Events . SeriesDeleted , { series : self . model } ) ;
vent . trigger ( vent . Events . SeriesDeleted , { series : self . model } ) ;
vent . trigger ( vent . Commands . CloseModalCommand ) ;
vent . trigger ( vent . Commands . CloseModalCommand ) ;
} ) ;
} ) ;
} ,
changeDeletedFiles : function ( ) {
var deleteFiles = this . ui . deleteFiles . prop ( 'checked' ) ;
if ( deleteFiles ) {
this . ui . deleteFilesInfo . show ( ) ;
}
else {
this . ui . deleteFilesInfo . hide ( ) ;
}
}
}
} ) ;
} ) ;
} ) ;
} ) ;
@ -31,6 +31,11 @@
.path {
.path {
margin-left : 30px;
margin-left : 30px;
}
}
.delete-files-info {
margin-top : 10px;
display : none;
}
}
}
.series-item {
.series-item {