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/4015984900df4ce9ce81c3e36d796445c4e553a3/UI/Shared/Cells/FileSizeCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Shared/Cells/FileSizeCell.js

12 lines
303 B

"use strict";
NzbDrone.Shared.Cells.FileSizeCell = Backgrid.Cell.extend({
className: "file-size-cell",
render: function () {
12 years ago
var size = this.model.get(this.column.get("name"));
this.delegateEvents();
12 years ago
return NzbDrone.Shared.FormatHelpers.FileSizeHelper(size);
}
});