From 69b9e3c5ec154c620907f40509e3c071945d96e3 Mon Sep 17 00:00:00 2001 From: Septias <=> Date: Thu, 29 Jul 2021 13:05:48 +0200 Subject: [PATCH] small fix --- src/sql/migrations.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/migrations.rs b/src/sql/migrations.rs index 2e387014b..d5905173a 100644 --- a/src/sql/migrations.rs +++ b/src/sql/migrations.rs @@ -474,7 +474,7 @@ paramsv![] // move requests to "Archived Chats", // this way, the app looks familiar after the contact request upgrade. info!(context, "[migration] v78"); - sql.execute_migration("UPDATE chats SET archived=1 WHERE blocked=2;", 78) + sql.execute_migration("UPDATE chats SET archived=1 WHERE blocked=2;", 78).await?; } if dbversion < 79 { info!(context, "[migration] v79");