Remove async from adding attachments.

This commit is contained in:
Burak Kaan Köse
2024-08-22 00:57:46 +02:00
parent 53dbeadabb
commit 298344c2ab
2 changed files with 1 additions and 11 deletions

View File

@@ -239,7 +239,7 @@ namespace Wino.Views
{
var attachmentViewModel = await file.ToAttachmentViewModelAsync();
await ViewModel.IncludeAttachmentAsync(attachmentViewModel);
ViewModel.IncludedAttachments.Add(attachmentViewModel);
}
}