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/771e366441daccae8f3f756d98fe91ba493218cd/UI/AddSeries/RootFolders/Collection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/AddSeries/RootFolders/Collection.js

18 lines
461 B

'use strict';
define(
[
'backbone',
'AddSeries/RootFolders/Model',
'Mixins/backbone.signalr.mixin'
], function (Backbone, RootFolderModel) {
var RootFolderCollection = Backbone.Collection.extend({
url : window.ApiRoot + '/rootfolder',
model: RootFolderModel
});
//var collection = new RootFolderCollection().bindSignalR();
return new RootFolderCollection();
});