Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/ae0df2aef077c9c46deedfdcc9840e7bb93199d7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
38 deletions
@ -12,7 +12,7 @@ namespace NzbDrone.Api.Movies
private readonly IRenameMovieFileService _renameMovieFileService ;
public RenameMovieModule ( IRenameMovieFileService renameMovieFileService )
: base ( "rename ")
: base ( "rename Movie ")
{
_renameMovieFileService = renameMovieFileService ;
@ -109,7 +109,7 @@ module.exports = Marionette.Layout.extend({
element : this . ui . rename ,
command : {
name : 'renameMovieFiles' ,
movieId : this . model . id ,
movieId : this . model . id ,
seasonNumber : - 1
}
} ) ;
@ -1,43 +1,8 @@
// var Backbone = require('backbone');
// var RenamePreviewModel = require('./RenamePreviewModel');
// module.exports = Backbone.Collection.extend({
// url : window.NzbDrone.ApiRoot + '/rename',
// model : RenamePreviewModel,
// originalFetch : Backbone.Collection.prototype.fetch,
// initialize : function(options) {
// if (!options.seriesId) {
// throw 'seriesId is required';
// }
// this.seriesId = options.seriesId;
// this.seasonNumber = options.seasonNumber;
// },
// fetch : function(options) {
// if (!this.seriesId) {
// throw 'seriesId is required';
// }
// options = options || {};
// options.data = {};
// options.data.seriesId = this.seriesId;
// if (this.seasonNumber !== undefined) {
// options.data.seasonNumber = this.seasonNumber;
// }
// return this.originalFetch.call(this, options);
// }
// });
var Backbone = require ( 'backbone' ) ;
var RenamePreviewModel = require ( './RenamePreviewModel' ) ;
module . exports = Backbone . Collection . extend ( {
url : window . NzbDrone . ApiRoot + '/rename ',
url : window . NzbDrone . ApiRoot + '/renameMovie' ,
model : RenamePreviewModel ,
originalFetch : Backbone . Collection . prototype . fetch ,