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

Fixed: Deleting multiple books at once from author page

pull/1145/head
ta264 4 years ago
parent b3dd116d27
commit 493ce1b20c

@ -64,17 +64,8 @@ class BookFileEditorTableContent extends Component {
// Control
getSelectedIds = () => {
const selectedIds = getSelectedIds(this.state.selectedState);
return selectedIds.reduce((acc, id) => {
const matchingItem = this.props.items.find((item) => item.id === id);
if (matchingItem && !acc.includes(matchingItem.bookFileId)) {
acc.push(matchingItem.bookFileId);
}
return acc;
}, []);
const ids = getSelectedIds(this.state.selectedState);
return ids;
}
//

Loading…
Cancel
Save