mirror of
https://github.com/chatmail/core.git
synced 2026-05-09 01:46:30 +03:00
Fix some "`" code markup
This commit is contained in:
@@ -60,7 +60,7 @@ pub struct Contact {
|
|||||||
/// to access this field.
|
/// to access this field.
|
||||||
authname: String,
|
authname: String,
|
||||||
|
|
||||||
/// E-Mail-Address of the contact. It is recommended to use `Contact::get_addr`` to access this field.
|
/// E-Mail-Address of the contact. It is recommended to use `Contact::get_addr` to access this field.
|
||||||
addr: String,
|
addr: String,
|
||||||
|
|
||||||
/// Blocked state. Use dc_contact_is_blocked to access this field.
|
/// Blocked state. Use dc_contact_is_blocked to access this field.
|
||||||
|
|||||||
@@ -598,7 +598,7 @@ impl Imap {
|
|||||||
|
|
||||||
let mut list = if let Some(ref mut session) = &mut *self.session.lock().await {
|
let mut list = if let Some(ref mut session) = &mut *self.session.lock().await {
|
||||||
// fetch messages with larger UID than the last one seen
|
// fetch messages with larger UID than the last one seen
|
||||||
// (`UID FETCH lastseenuid+1:*)`, see RFC 4549
|
// `(UID FETCH lastseenuid+1:*)`, see RFC 4549
|
||||||
let set = format!("{}:*", last_seen_uid + 1);
|
let set = format!("{}:*", last_seen_uid + 1);
|
||||||
match session.uid_fetch(set, PREFETCH_FLAGS).await {
|
match session.uid_fetch(set, PREFETCH_FLAGS).await {
|
||||||
Ok(list) => list,
|
Ok(list) => list,
|
||||||
|
|||||||
Reference in New Issue
Block a user