mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
assume 0 bytes where received when we don't have the information
This commit is contained in:
parent
5e72781577
commit
d4b20f0c1f
1 changed files with 2 additions and 2 deletions
|
|
@ -663,11 +663,11 @@ class Burp(Burp1):
|
|||
try:
|
||||
back['received'] = log['received']
|
||||
except KeyError as e:
|
||||
back['received'] = -1
|
||||
back['received'] = 0
|
||||
try:
|
||||
back['size'] = log['totsize']
|
||||
except KeyError as e:
|
||||
back['size'] = -1
|
||||
back['size'] = 0
|
||||
back['end'] = log['end']
|
||||
# override date since the timestamp is odd
|
||||
back['date'] = log['start']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue