We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048e836 commit 448b23cCopy full SHA for 448b23c
src/main/kotlin/ExtensionReflect.kt
@@ -6,7 +6,7 @@ import org.parosproxy.paros.network.HttpSender
6
7
class ExtensionReflect : ExtensionAdaptor(NAME) {
8
9
- val reflectPanel = ReflectPanel()
+ private val reflectPanel = ReflectPanel()
10
11
companion object {
12
const val NAME = "Reflect"
@@ -16,7 +16,7 @@ class ExtensionReflect : ExtensionAdaptor(NAME) {
16
super.hook(extensionHook)
17
if (view != null) {
18
HttpSender.addListener(ReflectListener(reflectPanel))
19
- extensionHook?.hookView?.addWorkPanel(reflectPanel)
+ extensionHook?.hookView?.addStatusPanel(reflectPanel)
20
}
21
22
0 commit comments