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

18 lines
470 B

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