aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/flow/utils.js
diff options
context:
space:
mode:
authorClemens <cle1000.cb@gmail.com>2016-07-29 09:45:15 +0200
committerClemens <cle1000.cb@gmail.com>2016-07-29 09:45:15 +0200
commita56c2ca731ff9c4a22438553dea0e4ecf7a51f1d (patch)
tree81b95677e89f69dd36a17c8a68feb636e2da8c23 /web/src/js/flow/utils.js
parent2807329fb2ce576ae529afd991e3da3d5f81d637 (diff)
downloadmitmproxy-a56c2ca731ff9c4a22438553dea0e4ecf7a51f1d.tar.gz
mitmproxy-a56c2ca731ff9c4a22438553dea0e4ecf7a51f1d.tar.bz2
mitmproxy-a56c2ca731ff9c4a22438553dea0e4ecf7a51f1d.zip
combine clientside and serverside contentviews
Diffstat (limited to 'web/src/js/flow/utils.js')
-rw-r--r--web/src/js/flow/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/flow/utils.js b/web/src/js/flow/utils.js
index b8435aa0..cd174069 100644
--- a/web/src/js/flow/utils.js
+++ b/web/src/js/flow/utils.js
@@ -49,7 +49,7 @@ export var MessageUtils = {
} else if (message === flow.response) {
message = "response";
}
- return `/flows/${flow.id}/${message}/content` + (view ? `?cv=${view}` : '');
+ return `/flows/${flow.id}/${message}/content` + (view ? `/${view}` : '');
}
};