mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-04 19:57:16 +00:00
Merge pull request #199 from dwilbraham/add_protobuffer_content_type
Decode content as protobuf if the content_type is "application/x-protobuffer"
This commit is contained in:
commit
b75cfd5bf8
1 changed files with 4 additions and 1 deletions
|
|
@ -397,7 +397,10 @@ class ViewProtobuf:
|
|||
|
||||
name = "Protocol Buffer"
|
||||
prompt = ("protobuf", "p")
|
||||
content_types = ["application/x-protobuf"]
|
||||
content_types = [
|
||||
"application/x-protobuf",
|
||||
"application/x-protobuffer",
|
||||
]
|
||||
|
||||
@staticmethod
|
||||
def is_available():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue