diff options
author | Wouter Visser <fusion86@cerbus.nl> | 2018-01-02 16:37:32 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2018-01-02 16:37:32 +0100 |
commit | 828e1a87ca8b0490ab3fd68783e60672d4b2df30 (patch) | |
tree | 188fa97ed39b9e17c74f53057566e149a235d252 | |
parent | 68c32d8627200b505036107277b39dcd876edb81 (diff) | |
download | mitmproxy-828e1a87ca8b0490ab3fd68783e60672d4b2df30.tar.gz mitmproxy-828e1a87ca8b0490ab3fd68783e60672d4b2df30.tar.bz2 mitmproxy-828e1a87ca8b0490ab3fd68783e60672d4b2df30.zip |
Fix crash when using body filters (#2744)
fix crash when using body filters
They still don't work, but at least the web interface won't crash.
-rw-r--r-- | web/src/js/filt/filt.js | 8 | ||||
-rw-r--r-- | web/src/js/filt/filt.peg | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/web/src/js/filt/filt.js b/web/src/js/filt/filt.js index 26058649..19a41af2 100644 --- a/web/src/js/filt/filt.js +++ b/web/src/js/filt/filt.js @@ -1929,7 +1929,7 @@ module.exports = (function() { function body(regex){ regex = new RegExp(regex, "i"); function bodyFilter(flow){ - return True; + return true; } bodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10"; return bodyFilter; @@ -1937,7 +1937,7 @@ module.exports = (function() { function requestBody(regex){ regex = new RegExp(regex, "i"); function requestBodyFilter(flow){ - return True; + return true; } requestBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10"; return requestBodyFilter; @@ -1945,7 +1945,7 @@ module.exports = (function() { function responseBody(regex){ regex = new RegExp(regex, "i"); function responseBodyFilter(flow){ - return True; + return true; } responseBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10"; return responseBodyFilter; @@ -2104,4 +2104,4 @@ module.exports = (function() { SyntaxError: peg$SyntaxError, parse: peg$parse }; -})();
\ No newline at end of file +})(); diff --git a/web/src/js/filt/filt.peg b/web/src/js/filt/filt.peg index 12959474..05b487b7 100644 --- a/web/src/js/filt/filt.peg +++ b/web/src/js/filt/filt.peg @@ -72,7 +72,7 @@ function responseCode(code){ function body(regex){ regex = new RegExp(regex, "i"); function bodyFilter(flow){ - return True; + return true; } bodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10"; return bodyFilter; @@ -80,7 +80,7 @@ function body(regex){ function requestBody(regex){ regex = new RegExp(regex, "i"); function requestBodyFilter(flow){ - return True; + return true; } requestBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10"; return requestBodyFilter; @@ -88,7 +88,7 @@ function requestBody(regex){ function responseBody(regex){ regex = new RegExp(regex, "i"); function responseBodyFilter(flow){ - return True; + return true; } responseBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10"; return responseBodyFilter; |