#37: Version check fails with incorrect message when VC runtime is missing

This commit is contained in:
2019-08-30 12:32:08 -05:00
parent cbc61742a2
commit adcc060d13
2 changed files with 6 additions and 1 deletions

View File

@@ -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);
}
}
}