From b37a8e76fa53fa075df244c588e720b0c7856953 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 7 Dec 2020 17:40:51 -0600 Subject: [PATCH] Fix auto-mount --- src/containers/MountItems/MountItems.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/MountItems/MountItems.js b/src/containers/MountItems/MountItems.js index 5460c12..b9f77fa 100644 --- a/src/containers/MountItems/MountItems.js +++ b/src/containers/MountItems/MountItems.js @@ -319,7 +319,7 @@ class MountItems extends IPCContainer { this.props.ProviderState[provider].AutoMount && !mounted && (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); } };