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

11 lines
368 B

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