#31: New installation displays 'Mount location is not set' on Windows
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.0.7
|
||||||
|
* \#31: New installation displays 'Mount location is not set' on Windows
|
||||||
|
|
||||||
## 1.0.6
|
## 1.0.6
|
||||||
* Additional Linux distribution support:
|
* Additional Linux distribution support:
|
||||||
* Antergos
|
* Antergos
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ exports.DEV_PUBLIC_KEY = '-----BEGIN PUBLIC KEY-----\n' +
|
|||||||
'-----END PUBLIC KEY-----';
|
'-----END PUBLIC KEY-----';
|
||||||
|
|
||||||
|
|
||||||
const REPERTORY_BRANCH = '1.0.1-release_branch';
|
const REPERTORY_BRANCH = '1.0.2-release_branch';
|
||||||
const REPERTORY_UI_BRANCH = '1.0.7_branch';
|
const REPERTORY_UI_BRANCH = '1.0.7_branch';
|
||||||
|
|
||||||
exports.RELEASES_URL = 'https://bitbucket.org/blockstorage/repertory/raw/' + REPERTORY_BRANCH + '/releases.json';
|
exports.RELEASES_URL = 'https://bitbucket.org/blockstorage/repertory/raw/' + REPERTORY_BRANCH + '/releases.json';
|
||||||
|
|||||||
@@ -223,7 +223,10 @@ class MountItems extends IPCContainer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (location !== providerState.MountLocation) {
|
if (location !== providerState.MountLocation) {
|
||||||
this.handleMountLocationChanged(provider, location);
|
const value = (this.props.Platform === 'win32') ?
|
||||||
|
data.DriveLetters[provider].indexOf(location) :
|
||||||
|
location;
|
||||||
|
this.handleMountLocationChanged(provider, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.props.AutoMountProcessed &&
|
if (!this.props.AutoMountProcessed &&
|
||||||
|
|||||||
Reference in New Issue
Block a user