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/a5d7649d772e99b1d8790669df9d5a70c9897253/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
321 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();
});