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/772ab3c92132196b63b15c92a262acc0bcce228f/UI/Logs/Files/FilenameCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Logs/Files/FilenameCell.js

19 lines
362 B

'use strict';
define(
[
'Cells/NzbDroneCell'
], function (NzbDroneCell) {
return NzbDroneCell.extend({
className: 'log-filename-cell',
render: function () {
var filename = this._getValue();
this.$el.html(filename);
return this;
}
});
});