Update ModalDialog.cs

- Adding await keyword
This commit is contained in:
FlorianDahn 2020-11-03 23:52:35 +01:00
parent f790a16e85
commit 259fa54236

View File

@ -22,7 +22,7 @@ namespace TelegramBotBase.Form
await this.OnClosed(new EventArgs()); await this.OnClosed(new EventArgs());
this.ParentForm?.ReturnFromModal(this); await this.ParentForm?.ReturnFromModal(this);
} }
} }
} }