mirror of
https://github.com/Radarr/Radarr
synced 2026-05-09 10:23:31 +02:00
Fixed: Bulk Collection RootFolder change failure
This commit is contained in:
parent
2bb7984961
commit
cc306fcd36
1 changed files with 6 additions and 1 deletions
|
|
@ -66,7 +66,8 @@ class CollectionFooter extends Component {
|
||||||
monitor,
|
monitor,
|
||||||
monitored,
|
monitored,
|
||||||
qualityProfileId,
|
qualityProfileId,
|
||||||
minimumAvailability
|
minimumAvailability,
|
||||||
|
rootFolderPath
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
|
||||||
const changes = {};
|
const changes = {};
|
||||||
|
|
@ -87,6 +88,10 @@ class CollectionFooter extends Component {
|
||||||
changes.minimumAvailability = minimumAvailability;
|
changes.minimumAvailability = minimumAvailability;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (rootFolderPath !== NO_CHANGE) {
|
||||||
|
changes.rootFolderPath = rootFolderPath;
|
||||||
|
}
|
||||||
|
|
||||||
this.props.onUpdateSelectedPress(changes);
|
this.props.onUpdateSelectedPress(changes);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue