Skip to content

Commit

Permalink
Fix send popover hang
Browse files Browse the repository at this point in the history
  • Loading branch information
Feodor0090 committed Jan 24, 2023
1 parent b2e6277 commit 637d69d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public SendPopover(int ownerId, int postId)
}

[BackgroundDependencyLoader]
private void load()
private async void load()
{
foreach (var x in api.GetDialogsList().Result)
foreach (var x in await api.GetDialogsList())
{
var u = x.Item1;
if (u == null)
Expand Down

0 comments on commit 637d69d

Please sign in to comment.