Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/0fa4934358ebd37e7431d828a9bf300173a4a6dc/UI/AddSeries/RootFolders/Model.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/AddSeries/RootFolders/Model.js

12 lines
202 B

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