Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Angel Docampo
burp-ui
Commits
4facfc56
Commit
4facfc56
authored
Apr 19, 2017
by
Benjamin "Ziirish" SANS
Browse files
fix: wrong cast for live monitor
parent
4703d0f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
burpui/api/misc.py
View file @
4facfc56
...
...
@@ -25,7 +25,7 @@ bui = current_app # type: BUIServer
ns
=
api
.
namespace
(
'misc'
,
'Misc methods'
)
counters_fields
=
ns
.
model
(
'Counters'
,
{
'phase'
:
fields
.
Integer
(
description
=
'Backup phase'
),
'phase'
:
fields
.
String
(
description
=
'Backup phase'
),
'Total'
:
fields
.
List
(
fields
.
Integer
,
description
=
'new/deleted/scanned/unchanged/total'
,
attribute
=
'total'
),
'Files'
:
fields
.
List
(
fields
.
Integer
,
description
=
'new/deleted/scanned/unchanged/total'
,
attribute
=
'files'
),
'Files (encrypted)'
:
fields
.
List
(
fields
.
Integer
,
description
=
'new/deleted/scanned/unchanged/total'
,
attribute
=
'files_encrypted'
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment