aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/filt/filt.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/filt/filt.js')
-rw-r--r--web/src/js/filt/filt.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/js/filt/filt.js b/web/src/js/filt/filt.js
index 78d6a67c..02a04c66 100644
--- a/web/src/js/filt/filt.js
+++ b/web/src/js/filt/filt.js
@@ -1654,7 +1654,7 @@ module.exports = (function() {
assetFilter.desc = "is asset";
function responseCode(code){
function responseCodeFilter(flow){
- return flow.response && flow.response.code === code;
+ return flow.response && flow.response.status_code === code;
}
responseCodeFilter.desc = "resp. code is " + code;
return responseCodeFilter;
@@ -1771,4 +1771,4 @@ module.exports = (function() {
SyntaxError: SyntaxError,
parse: parse
};
-})(); \ No newline at end of file
+})();