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/8b8ee912c0b4d4e3d12b4760639d963dbac30429/UI/Quality/qualityProfileModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Quality/qualityProfileModel.js

13 lines
237 B

"use strict";
define(['app'], function () {
NzbDrone.Quality.QualityProfileModel = Backbone.DeepModel.extend({
defaults: {
id : null,
name : '',
cutoff: null
}
});
});