From 7e0659f71f3836c928d78e1c9af160707049aa1e Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 6 Jun 2019 21:05:59 -0500 Subject: [PATCH] Fix set mount state --- 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 f45ad58..7fe1399 100644 --- a/src/containers/MountItems/MountItems.js +++ b/src/containers/MountItems/MountItems.js @@ -204,7 +204,7 @@ class MountItems extends IPCContainer { }; onMountDriveReply = (event, arg) => { - this.props.setMounted(arg.data.ProviderState, arg.data.Success); + this.props.setMounted(arg.data.Provider, arg.data.Success); this.detectMounts(); };