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

15 lines
283 B

'use strict';
define(
[
'backbone.deepmodel'
], function (DeepModel) {
return DeepModel.DeepModel.extend({
defaults: {
id : null,
name : '',
cutoff: null
}
});
});