Skip to content

Commit 9671c25

Browse files
committed
Fix async not waited warning
1 parent d9eb53e commit 9671c25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Signal-Windows/Controls/Conversation.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ public void Load(SignalConversation conversation)
216216
*/
217217
if (conversationThreadIdChanged)
218218
{
219-
LoadDraft();
219+
// We don't need to wait for this
220+
_ = LoadDraft();
220221
}
221222
UserInputBar.FocusTextBox();
222223
DisposeCurrentThread();

0 commit comments

Comments
 (0)