Reject form promises for proper error handling (#371)

This commit is contained in:
Matt Gibson 2021-05-10 09:43:57 -05:00 committed by GitHub
parent 1b8f6aace2
commit 2750ca7586
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 20 deletions

View File

@ -301,28 +301,28 @@ export class AddEditComponent implements OnInit {
this.formPromise = this.encryptSend(file)
.then(async encSend => {
try {
const uploadPromise = this.sendService.saveWithServer(encSend);
let inactive = false;
setTimeout(() => inactive = true, 4500);
await uploadPromise;
if (this.send.id == null) {
this.send.id = encSend[0].id;
}
if (this.send.accessId == null) {
this.send.accessId = encSend[0].accessId;
}
this.onSavedSend.emit(this.send);
await this.showSuccessMessage(inactive);
if (this.copyLink) {
this.copyLinkToClipboard(this.link);
}
return true;
} catch { }
return false;
const uploadPromise = this.sendService.saveWithServer(encSend);
let inactive = false;
setTimeout(() => inactive = true, 4500);
await uploadPromise;
if (this.send.id == null) {
this.send.id = encSend[0].id;
}
if (this.send.accessId == null) {
this.send.accessId = encSend[0].accessId;
}
this.onSavedSend.emit(this.send);
await this.showSuccessMessage(inactive);
if (this.copyLink) {
this.copyLinkToClipboard(this.link);
}
});
return await this.formPromise;
try {
await this.formPromise;
return true;
} catch { }
return false;
}
async showSuccessMessage(inactive: boolean) {