summaryrefslogtreecommitdiffstats
path: root/ui/src/components/mail/view/envelope.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/mail/view/envelope.rs')
-rw-r--r--ui/src/components/mail/view/envelope.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/src/components/mail/view/envelope.rs b/ui/src/components/mail/view/envelope.rs
index 5c490579..51299f12 100644
--- a/ui/src/components/mail/view/envelope.rs
+++ b/ui/src/components/mail/view/envelope.rs
@@ -125,8 +125,11 @@ impl EnvelopeView {
.unwrap()
.write_all(&v)
.expect("Failed to write to stdin");
- *v = format!("Text piped through `{}`. Press `v` to open in web browser. \n\n",
- filter_invocation).into_bytes();
+ *v = format!(
+ "Text piped through `{}`. Press `v` to open in web browser. \n\n",
+ filter_invocation
+ )
+ .into_bytes();
v.extend(html_filter.wait_with_output().unwrap().stdout);
}
}