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/60e28140ab08cf0c43a8a65cded1eb37bb71853d/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
}
});
});