refactor: enable clippy::unreadable_literal

This commit is contained in:
Alexander Krotov
2019-12-18 18:59:53 +03:00
parent 2398454838
commit 73c21ae0a9
5 changed files with 9 additions and 9 deletions

View File

@@ -720,7 +720,7 @@ pub fn get_msg_info(context: &Context, msg_id: MsgId) -> String {
return ret;
}
let rawtxt = rawtxt.unwrap_or_default();
let rawtxt = dc_truncate(rawtxt.trim(), 100000, false);
let rawtxt = dc_truncate(rawtxt.trim(), 100_000, false);
let fts = dc_timestamp_to_str(msg.get_timestamp());
ret += &format!("Sent: {}", fts);