used get_decoded_content and removed decode call from headers as max suggested

This commit is contained in:
Marcelo Glezer
2015-01-14 14:45:19 -03:00
parent 1a06f15ee0
commit d9f562b5c0
3 changed files with 4 additions and 14 deletions

View File

@@ -143,12 +143,12 @@ class ConnectionItem(common.WWrap):
def server_copy_response(self, k):
if k == "c":
try:
pyperclip.copy(self.flow.response_content())
pyperclip.copy(self.flow.response.get_decoded_content())
except TypeError:
self.master.statusbar.message("Content is binary or can be converted to text")
elif k == "h":
try:
pyperclip.copy(self.flow.response_headers())
pyperclip.copy(str(self.flow.response.headers))
except TypeError:
self.master.statusbar.message("Error converting headers to text")

View File

@@ -652,12 +652,12 @@ class FlowView(common.WWrap):
def server_copy_response(self, k):
if k == "c":
try:
pyperclip.copy(self.flow.response_content())
pyperclip.copy(self.flow.response.get_decoded_content())
except TypeError:
self.master.statusbar.message("Content is binary or can be converted to text")
elif k == "h":
try:
pyperclip.copy(self.flow.response_headers())
pyperclip.copy(str(self.flow.response.headers))
except TypeError:
self.master.statusbar.message("Error converting headers to text")