diff --git a/src/containers/MountItems/MountItems.js b/src/containers/MountItems/MountItems.js index 68e7228..3725e10 100644 --- a/src/containers/MountItems/MountItems.js +++ b/src/containers/MountItems/MountItems.js @@ -236,20 +236,19 @@ class MountItems extends IPCContainer { Mounted: (arg.data.Location.length > 0), }; this.props.setMountState(provider, mountState); - this.removeMountsBusy(provider); this.updateMountLocation(provider, arg.data.Location, mountState.Mounted, arg.data.DriveLetters); - this.props.setAutoMountProcessed(provider,true); + this.removeMountsBusy(provider); } else { this.props.notifyError(arg.data.Error); } }; onMountDriveReply = (event, arg) => { - this.removeMountsBusy(arg.data.Provider); this.props.setMounted(arg.data.Provider, arg.data.Success); this.detectMount(arg.data.Provider); + this.removeMountsBusy(arg.data.Provider); }; onUnmountDriveReply = (event, arg) => {