Fix auto-mount

This commit is contained in:
2020-12-07 17:40:51 -06:00
parent 60cb4d745e
commit b37a8e76fa

View File

@@ -319,7 +319,7 @@ class MountItems extends IPCContainer {
this.props.ProviderState[provider].AutoMount && this.props.ProviderState[provider].AutoMount &&
!mounted && !mounted &&
(location.length > 0)) { (location.length > 0)) {
this.handleMountUnMount(provider, this.props.RemoteMounts.includes(provider),true, location); this.handleMountUnMount(provider, this.props.RemoteMounts.includes(provider), this.props.S3Mounts.includes(provider), true, location);
} }
}; };