diff --git a/crates/utils/src/lib.rs b/crates/utils/src/lib.rs index e6188d2b8..6aef349d0 100644 --- a/crates/utils/src/lib.rs +++ b/crates/utils/src/lib.rs @@ -96,7 +96,7 @@ impl std::fmt::Debug for LemmyError { impl Display for LemmyError { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { - self.inner.fmt(f)?; + writeln!(f, "{}", self.inner)?; self.context.fmt(f) } }