Improve notification title format

This commit is contained in:
Alexandre Franke 2018-08-17 11:52:52 +02:00
parent ed3cc63b41
commit a52ee5f1c2

View file

@ -51,7 +51,7 @@ impl AppOp {
Err(TryRecvError::Empty) => gtk::Continue(true),
Err(TryRecvError::Disconnected) => gtk::Continue(false),
Ok((name, avatar)) => {
let summary = format!("@{} / {}", name, roomname);
let summary = format!("{} ({})", name, roomname);
let bk = bk.clone();
let m = m.clone();