Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/dfe8d5436a99a6674b827f31858c02810db2dd02/UI/Quality/qualityProfileModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Quality/qualityProfileModel.js

24 lines
580 B

"use strict";
define(['app'], function () {
NzbDrone.Quality.QualityProfileModel = Backbone.DeepModel.extend({
mutators: {
allowed: function () {
return _.where(this.get('qualities'), { allowed: true });
},
cutoffName: function () {
return _.findWhere(this.get('qualities'), { id: this.get('cutoff') }).name;
}
},
defaults: {
id : null,
name : '',
//'qualities.allowed': false,
cutoff: null
}
});
});