fix: dublicate dtmf
Some checks failed
/ mirror (push) Waiting to run
/ build-stealth (push) Has been cancelled
/ build (push) Has been cancelled

This commit is contained in:
Florian Griffon 2025-05-14 12:54:06 +03:00
parent 7ac8b3ca8f
commit 9ba714d25c

View File

@ -208,15 +208,6 @@ class MainActivity : FlutterActivity() {
checkAndRequestDefaultDialer()
result.success(true)
}
"sendDtmfTone" -> {
val digit = call.argument<String>("digit")
if (digit != null) {
val success = MyInCallService.sendDtmfTone(digit)
result.success(success)
} else {
result.error("INVALID_ARGUMENT", "Digit is null", null)
}
}
else -> result.notImplemented()
}
}