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

Fixed: Bulk Collection RootFolder change failure

pull/7421/head
Qstick 3 years ago
parent 2bb7984961
commit cc306fcd36

@ -66,7 +66,8 @@ class CollectionFooter extends Component {
monitor,
monitored,
qualityProfileId,
minimumAvailability
minimumAvailability,
rootFolderPath
} = this.state;
const changes = {};
@ -87,6 +88,10 @@ class CollectionFooter extends Component {
changes.minimumAvailability = minimumAvailability;
}
if (rootFolderPath !== NO_CHANGE) {
changes.rootFolderPath = rootFolderPath;
}
this.props.onUpdateSelectedPress(changes);
};

Loading…
Cancel
Save