mirror of
https://github.com/chatmail/core.git
synced 2026-05-17 05:46:30 +03:00
fix: Do not fail to upgrade if the verifier of a contact doesn't exist anymore (#7044)
Fix https://github.com/chatmail/core/issues/7043
This commit is contained in:
@@ -1480,9 +1480,11 @@ fn migrate_key_contacts(
|
|||||||
} else if addr.is_empty() {
|
} else if addr.is_empty() {
|
||||||
Ok(default)
|
Ok(default)
|
||||||
} else {
|
} else {
|
||||||
original_contact_id_from_addr_stmt
|
Ok(original_contact_id_from_addr_stmt
|
||||||
.query_row((addr,), |row| row.get(0))
|
.query_row((addr,), |row| row.get(0))
|
||||||
.with_context(|| format!("Original contact '{addr}' not found"))
|
.optional()
|
||||||
|
.with_context(|| format!("Original contact '{addr}' not found"))?
|
||||||
|
.unwrap_or(default))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user