1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-12 01:48:21 +02:00

fix promises on makePremium

This commit is contained in:
Kyle Spearrin 2019-09-20 00:00:26 -04:00
parent 1fed3a2440
commit 977abbe572

View File

@ -81,7 +81,7 @@ export class PremiumComponent extends BasePremiumComponent {
if (payment.productIdentifier !== AppStorePremiumPlan) {
return;
}
await this.makePremium(this.purchasePromise);
await this.makePremium(false);
// Finish the transaction.
remote.inAppPurchase.finishTransactionByDate(transaction.transactionDate);
break;
@ -142,7 +142,7 @@ export class PremiumComponent extends BasePremiumComponent {
makePremium = true;
} catch { }
if (makePremium) {
await this.makePremium(this.restorePromise);
await this.makePremium(true);
}
}
@ -158,7 +158,7 @@ export class PremiumComponent extends BasePremiumComponent {
}
}
private async makePremium(promise: Promise<any>) {
private async makePremium(restore: boolean) {
const receiptUrl = remote.inAppPurchase.getReceiptURL();
const receiptBuffer = fs.readFileSync(receiptUrl);
const receiptB64 = Utils.fromBufferToB64(receiptBuffer);
@ -167,12 +167,18 @@ export class PremiumComponent extends BasePremiumComponent {
fd.append('paymentToken', receiptB64);
fd.append('additionalStorageGb', '0');
try {
promise = this.apiService.postPremium(fd).then((paymentResponse) => {
const p = this.apiService.postPremium(fd).then((paymentResponse) => {
if (paymentResponse.success) {
return this.finalizePremium();
}
});
await promise;
if (restore) {
this.restorePromise = p;
await this.restorePromise;
} else {
this.purchasePromise = p;
await this.purchasePromise;
}
} catch { }
}