From 26115838399be3f76de622f509be066f0b03d24b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 15 Feb 2019 19:13:29 +0100 Subject: [PATCH] Fix: Also print if runtime ignores IDs Signed-off-by: Matthias Beyer --- bin/domain/imag-contact/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/domain/imag-contact/src/main.rs b/bin/domain/imag-contact/src/main.rs index 07753788..9570e0ba 100644 --- a/bin/domain/imag-contact/src/main.rs +++ b/bin/domain/imag-contact/src/main.rs @@ -288,7 +288,7 @@ fn find(rt: &Runtime) { }) .enumerate(); - if !rt.output_is_pipe() { + if !rt.output_is_pipe() || rt.ignore_ids() { if scmd.is_present("json") { let v : Vec = iterator.map(|(_, tlp)| tlp.1).collect();