From 346082cf5f44133b7e8a40f75267dbf6dea0c0b1 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Mon, 24 Aug 2020 12:13:36 +0200 Subject: [PATCH] privoxy-log-parser: Let handle_loglevel_re_filter() accept the no-content message Sponsored by: Robert Klemme --- tools/privoxy-log-parser.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index 09639938..695fad68 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -1210,6 +1210,12 @@ sub handle_loglevel_re_filter($) { return '' unless SHOW_FILTER_READIN_IN; + } elsif ($c =~ m/^Decompression didn't result/) { + + # Decompression didn't result in any content. + + # Nothing to highlight. + } else { found_unknown_content($content); -- 2.39.2