recovery drive failing

This commit is contained in:
Drew Ansbacher
2021-11-23 15:05:12 -07:00
committed by Aiden McClelland
parent 13c227399b
commit 1cca7942ae
2 changed files with 7 additions and 2 deletions

View File

@@ -52,11 +52,16 @@
<ion-label>
<h1>{{ partition.label || partition.logicalname }}</h1>
<h2>{{ partition.capacity | convertBytes }}</h2>
<p *ngIf="partition['embassy-os'] && partition['embassy-os'].full">
<p *ngIf="partitionClickable(partition)">
<ion-text color="success">
Embassy backup detected
</ion-text>
</p>
<p *ngIf="!partitionClickable(partition)">
<ion-text>
No Embassy backup detected
</ion-text>
</p>
</ion-label>
<div *ngIf="partition['embassy-os'] && partition['embassy-os'].full">
<ion-icon *ngIf="partition['embassy-os'].version.startsWith('0.2')" color="success" slot="end" name="lock-open-outline" size="large"></ion-icon>

View File

@@ -59,7 +59,7 @@ export class LiveApiService extends ApiService {
async importDrive (guid: string) {
const res = await this.http.rpcRequest<SetupEmbassyRes>({
method: 'setup.execute',
method: 'setup.attach',
params: { guid },
})