Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Do not log while no messages in the queue.
Browse files Browse the repository at this point in the history
  • Loading branch information
fruh committed Jan 4, 2017
1 parent 5647420 commit 3357964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,8 @@ public void processHttpMessage(int toolFlag, boolean messageIsRequest, IHttpRequ
messageInfo.setRequest(newRequest.getBytes());
}
}
else {
// TODO: the sequnce is not correct in multihreaded
else if (messagesModel.getMessages().size() > 0){
// TODO: the sequence is not correct in multihreaded
String fromTool = "UNKNOWN TOOL";

switch (toolFlag) {
Expand Down

0 comments on commit 3357964

Please sign in to comment.