diff options
author | Cixtor <cixtords@gmail.com> | 2019-12-17 12:52:14 -0800 |
---|---|---|
committer | Cixtor <cixtords@gmail.com> | 2019-12-17 12:52:14 -0800 |
commit | c872a5c70036fca4e4f91a879b98d8cd83ed2283 (patch) | |
tree | 5988c66ffe5757ab76de17ef86a54904bec9094b | |
parent | 67955fad3240d158711f30d9a660fdcb40f80624 (diff) | |
download | mitmproxy-c872a5c70036fca4e4f91a879b98d8cd83ed2283.tar.gz mitmproxy-c872a5c70036fca4e4f91a879b98d8cd83ed2283.tar.bz2 mitmproxy-c872a5c70036fca4e4f91a879b98d8cd83ed2283.zip |
Fix #3571 to support image/webp in mitmweb to display previews
-rw-r--r-- | web/src/js/components/ContentView/ContentViews.jsx | 2 |
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, |