Skip to content

Commit

Permalink
fix: [#2735] tasker intent
Browse files Browse the repository at this point in the history
  • Loading branch information
zlshames committed May 2, 2024
1 parent d969f10 commit 3c3862e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class ExternalIntentReceiver: BroadcastReceiver() {
override fun onReceive(context: Context?, intent: Intent?) {
if (context == null || intent == null) return

Log.d(Constants.logTag, "Received intent ${intent.type} from external app")
when (intent.type) {
Log.d(Constants.logTag, "Received intent ${intent.action} from external app")
when (intent.action) {
"com.bluebubbles.external.GET_SERVER_URL" -> {
val password = intent.extras?.getString("password")
val identifier = intent.extras?.getString("id")
Expand Down

0 comments on commit 3c3862e

Please sign in to comment.