diff --git a/data/src/config/buffer.rs b/data/src/config/buffer.rs index 9e69de753..f2424b676 100644 --- a/data/src/config/buffer.rs +++ b/data/src/config/buffer.rs @@ -92,10 +92,9 @@ impl ServerMessage { let is_channel_filtered = |list: &Vec, channel: &str| -> bool { let wildcards = ["*", "all"]; - - list.iter() - .any(|item| wildcards.contains(&item.as_str()) || item == channel) - + + list.iter() + .any(|item| wildcards.contains(&item.as_str()) || item == channel) }; let channel_included = is_channel_filtered(&self.include, channel);