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/e4e6bcae1d04a5cb50be1bad7359d9e32ec49b1b/UI/AddSeries/RootFolders/RootFolderCollection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/AddSeries/RootFolders/RootFolderCollection.js

10 lines
335 B

"use strict";
define(['app', 'AddSeries/RootFolders/RootFolderModel'], function () {
var rootFolderCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/rootfolder',
model: NzbDrone.AddSeries.RootFolders.RootFolderModel
});
return new rootFolderCollection().BindSignalR();
});