#37: Version check fails with incorrect message when VC runtime is missing
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## 1.0.8
|
## 1.0.8
|
||||||
* \#36: Add ability to select Linux distribution type if OS is unsupported
|
* \#36: Add ability to select Linux distribution type if OS is unsupported
|
||||||
|
* \#37: Version check fails with incorrect message when VC runtime is missing
|
||||||
* Added additional WinFsp uninstall strings
|
* Added additional WinFsp uninstall strings
|
||||||
|
|
||||||
## 1.0.7
|
## 1.0.7
|
||||||
|
|||||||
@@ -171,9 +171,13 @@ class MountItems extends IPCContainer {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
allowAction = false;
|
allowAction = false;
|
||||||
|
if (this.props.Platform === 'win32') {
|
||||||
|
this.props.notifyError('Failed to launch repertory. Please install Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019.');
|
||||||
|
} else {
|
||||||
this.displayRetryMount(provider, location, 'Version check failed: ' + result.Error);
|
this.displayRetryMount(provider, location, 'Version check failed: ' + result.Error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (allowAction) {
|
if (allowAction) {
|
||||||
this.props.setMountsBusy(true);
|
this.props.setMountsBusy(true);
|
||||||
|
|||||||
Reference in New Issue
Block a user