From 5bbbe4b79cea10b373917ee2f416d662e2a787ac Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Tue, 29 Dec 2020 01:30:27 +0300 Subject: [PATCH] Missing paren in the comment --- src/chat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat.rs b/src/chat.rs index 9656acc0b..33d47705d 100644 --- a/src/chat.rs +++ b/src/chat.rs @@ -1255,7 +1255,7 @@ pub async fn create_by_contact_id(context: &Context, contact_id: u32) -> Result< let chat_id = match lookup_by_contact_id(context, contact_id).await { Ok((chat_id, chat_blocked)) => { if chat_blocked != Blocked::Not { - // unblock chat (typically move it from the deaddrop to view + // unblock chat (typically move it from the deaddrop to view) chat_id.unblock(context).await; } chat_id