fix invalid negation

This commit is contained in:
Rasmus Moorats 2023-03-17 16:33:07 +02:00
parent 29edc7e189
commit c6ea65011e
Signed by: xx
GPG key ID: FE14255A6AE7241C

View file

@ -41,7 +41,7 @@ class BurpExtender : BurpExtension {
}
override fun handleHttpResponseReceived(response: HttpResponseReceived): ResponseReceivedAction {
if (!ui.isEnabled(response.toolSource().toolType()))
if (ui.isEnabled(response.toolSource().toolType()))
replacer.handleResponse(response.toString())
return ResponseReceivedAction.continueWith(response)
}