Trim message content before displaying

This commit is contained in:
Joscha 2022-06-25 11:47:14 +02:00
parent 3ad05182e3
commit d44a7faf61

View file

@ -66,7 +66,7 @@ impl Msg for EuphMsg {
} }
fn content(&self) -> String { fn content(&self) -> String {
self.content.clone() self.content.trim().to_string()
} }
} }