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/642207c68dc48028f666c31118420e07be2feb17/UI/AddSeries/RootFolders/Model.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/AddSeries/RootFolders/Model.js

12 lines
202 B

'use strict';
define(
[
'backbone'
], function (Backbone) {
return Backbone.Model.extend({
defaults: {
freeSpace: 0
}
});
});