Skip to content

Commit d33b17c

Browse files
authored
Android/PIR: Add missing captchaType in GetCaptchaInfo and SolveCaptcha action (#7049)
Task/Issue URL: https://app.asana.com/1/137249556945/project/45878998844068/task/1211820507886063?focus=true ### Description See attached task description ### Steps to test this PR https://app.asana.com/1/137249556945/project/45878998844068/task/1211820507886066?focus=true
1 parent e6c1300 commit d33b17c

File tree

1 file changed

+2
-0
lines changed
  • pir/pir-impl/src/main/java/com/duckduckgo/pir/impl/scripts/models

1 file changed

+2
-0
lines changed

pir/pir-impl/src/main/java/com/duckduckgo/pir/impl/scripts/models/BrokerAction.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@ sealed class BrokerAction(
6363
data class GetCaptchaInfo(
6464
override val id: String,
6565
val selector: String,
66+
val captchaType: String? = null,
6667
) : BrokerAction(id)
6768

6869
data class SolveCaptcha(
6970
override val id: String,
7071
val selector: String,
72+
val captchaType: String? = null,
7173
) : BrokerAction(id)
7274

7375
data class Click(

0 commit comments

Comments
 (0)