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

15 lines
302 B

define(
[
'marionette',
'backbone'
], function (Marionette, Backbone) {
'use strict';
var reqres = new Backbone.Wreqr.RequestResponse();
reqres.Requests = {
GetEpisodeFileById: 'GetEpisodeFileById'
};
return reqres;
});