Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/e256271c5c321cded971867ceb1e467ef43f93f7/UI/Logs/Collection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Logs/Collection.js

38 lines
920 B

'use strict';
define(['backbone.pageable', 'Logs/Model', ], function (PagableCollection, LogsModel) {
return PagableCollection.extend({
url : window.ApiRoot + '/log',
model: LogsModel,
12 years ago
state: {
pageSize: 50,
sortKey : 'time',
order : 1
12 years ago
},
queryParams: {
totalPages : null,
12 years ago
totalRecords: null,
pageSize : 'pageSize',
sortKey : 'sortKey',
order : 'sortDir',
directions : {
'-1': 'asc',
'1' : 'desc'
12 years ago
}
},
parseState: function (resp, queryParams, state) {
return {totalRecords: resp.totalRecords};
},
parseRecords: function (resp) {
if (resp) {
return resp.records;
}
return resp;
}
});
});