aboutsummaryrefslogtreecommitdiffstats
path: root/web/src
diff options
context:
space:
mode:
authorCixtor <cixtords@gmail.com>2019-12-17 12:52:14 -0800
committerCixtor <cixtords@gmail.com>2019-12-17 12:52:14 -0800
commitc872a5c70036fca4e4f91a879b98d8cd83ed2283 (patch)
tree5988c66ffe5757ab76de17ef86a54904bec9094b /web/src
parent67955fad3240d158711f30d9a660fdcb40f80624 (diff)
downloadmitmproxy-c872a5c70036fca4e4f91a879b98d8cd83ed2283.tar.gz
mitmproxy-c872a5c70036fca4e4f91a879b98d8cd83ed2283.tar.bz2
mitmproxy-c872a5c70036fca4e4f91a879b98d8cd83ed2283.zip
Fix #3571 to support image/webp in mitmweb to display previews
Diffstat (limited to 'web/src')
-rw-r--r--web/src/js/components/ContentView/ContentViews.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/components/ContentView/ContentViews.jsx b/web/src/js/components/ContentView/ContentViews.jsx
index 387c940a..4da81c8f 100644
--- a/web/src/js/components/ContentView/ContentViews.jsx
+++ b/web/src/js/components/ContentView/ContentViews.jsx
@@ -7,7 +7,7 @@ import { MessageUtils } from '../../flow/utils'
import CodeEditor from './CodeEditor'
-const isImage = /^image\/(png|jpe?g|gif|vnc.microsoft.icon|x-icon)$/i
+const isImage = /^image\/(png|jpe?g|gif|webp|vnc.microsoft.icon|x-icon)$/i
ViewImage.matches = msg => isImage.test(MessageUtils.getContentType(msg))
ViewImage.propTypes = {
flow: PropTypes.object.isRequired,