summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2016-05-23 17:25:47 -0400
committerJoey Grover <joeygrover@gmail.com>2016-05-23 17:25:47 -0400
commitf12aa4e87b345ffcfbc8448cc63f2cc773ef5dd0 (patch)
tree078880d20a26a4359e25e91bbbba6c6866cd74e3
parent6c4abef06d45b72aacc60232a9e3f7673eeb0ab2 (diff)
downloadsdl_android-f12aa4e87b345ffcfbc8448cc63f2cc773ef5dd0.tar.gz
Change action from null to dummy string in SdlBroadcastReciever
-rw-r--r--sdl_android_lib/src/com/smartdevicelink/transport/SdlBroadcastReceiver.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdl_android_lib/src/com/smartdevicelink/transport/SdlBroadcastReceiver.java b/sdl_android_lib/src/com/smartdevicelink/transport/SdlBroadcastReceiver.java
index ae7484bcb..3e43e3c4f 100644
--- a/sdl_android_lib/src/com/smartdevicelink/transport/SdlBroadcastReceiver.java
+++ b/sdl_android_lib/src/com/smartdevicelink/transport/SdlBroadcastReceiver.java
@@ -78,7 +78,7 @@ public abstract class SdlBroadcastReceiver extends BroadcastReceiver{
if(vlad.validate()){
Log.d(TAG, "Router service trusted!");
queuedService = componentName;
- intent.setAction(null);
+ intent.setAction("com.sdl.noaction"); //Replace what's there so we do go into some unintended loop
intent.putExtra(FORCE_TRANSPORT_CONNECTED, true);
onSdlEnabled(context, intent);
}else{