summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs12
2 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e76643f..2fc8496 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "amt"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
description = "Accumulate git-trailers from emails grouped by mail subject"
keywords = ["tool", "git", "cli", "mail", "email"]
diff --git a/src/main.rs b/src/main.rs
index 717c715..bf60e85 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -115,12 +115,12 @@ fn main() {
|| key == "Message-Id"
|| key == "References"
{
- let value = hdr.get_value().unwrap_or_else(|e| {
- eprintln!("Failed to get mail header value: {} - {:?}", path.display(), e);
- exit(1)
- });
-
- value == msgid
+ hdr.get_value()
+ .unwrap_or_else(|e| {
+ eprintln!("Failed to get mail header value: {} - {:?}", path.display(), e);
+ exit(1)
+ })
+ .contains(msgid)
} else {
false
}