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

14 lines
341 B

"use strict";
define(['app'], function () {
NzbDrone.AddSeries.RootFolders.RootFolderModel = Backbone.Model.extend({
mutators: {
freeSpaceString: function () {
return this.get('freeSpace').bytes(2) + " Free";
}
},
defaults: {
freeSpace: 0
}
});
});