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/b04fb32f77e764fa23534caa3b4cb456fe658475/NzbDrone.Backbone/AddSeries/SearchResultCollection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Backbone/AddSeries/SearchResultCollection.js

11 lines
282 B

"use strict";
define(['app', 'AddSeries/SearchResultModel'], function () {
NzbDrone.AddSeries.SearchResultCollection = Backbone.Collection.extend({
url: NzbDrone.Constants.ApiRoot + '/series/lookup',
model: NzbDrone.AddSeries.SearchResultModel
});
});