Skip to content

Commit 4a16612

Browse files
author
farfromrefuge
committed
fix(dialogs): regression fix where AlertDialog woould not hide anymore
1 parent b949045 commit 4a16612

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dialogs/dialogs.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ export class AlertDialog {
354354
return new Promise<void>((resolve) => {
355355
this.onCloseListeners.push(resolve);
356356
if (this.dialog['onDone']) {
357-
this.dialog['onDone'](result);
357+
this.dialog['onDone'](result, this.dialog);
358358
} else {
359359
this.dialog.cancel();
360360
}

0 commit comments

Comments
 (0)