#37: Version check fails with incorrect message when VC runtime is missing
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
## 1.0.8
|
||||
* \#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
|
||||
|
||||
## 1.0.7
|
||||
|
||||
@@ -171,7 +171,11 @@ class MountItems extends IPCContainer {
|
||||
}
|
||||
} else {
|
||||
allowAction = false;
|
||||
this.displayRetryMount(provider, location, 'Version check failed: ' + result.Error);
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user