mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-02 05:23:14 +00:00
fixes #753
This commit is contained in:
committed by
Aiden McClelland
parent
305f3d8bcc
commit
70ceb82d6e
@@ -62,8 +62,8 @@ export class StateService {
|
||||
|
||||
async importDrive (guid: string) : Promise<void> {
|
||||
const ret = await this.apiService.importDrive(guid)
|
||||
this.torAddress = 'http://' + ret['tor-address']
|
||||
this.lanAddress = 'https://' + ret['lan-address']
|
||||
this.torAddress = ret['tor-address']
|
||||
this.lanAddress = ret['lan-address']
|
||||
this.cert = ret['root-ca']
|
||||
}
|
||||
|
||||
@@ -74,8 +74,8 @@ export class StateService {
|
||||
'recovery-partition': this.recoveryPartition,
|
||||
'recovery-password': this.recoveryPassword,
|
||||
})
|
||||
this.torAddress = 'http://' + ret['tor-address']
|
||||
this.lanAddress = 'https://' + ret['lan-address']
|
||||
this.torAddress = ret['tor-address']
|
||||
this.lanAddress = ret['lan-address']
|
||||
this.cert = ret['root-ca']
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user