From a1f935d1a2a21d82a4069d1832e2d7239d7a256f Mon Sep 17 00:00:00 2001 From: Martijn Coenen Date: Thu, 24 May 2012 10:47:08 -0700 Subject: [PATCH] Fix variable initialization. This could cause Bluetooth file transfers to fail. Change-Id: I69b91e84cb7df1f147581e37f056eeacd54687d8 --- src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java b/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java index 55ba4634..7112cbb4 100644 --- a/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java +++ b/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java @@ -68,7 +68,7 @@ public class BluetoothOppLauncherActivity extends Activity { Intent intent = getIntent(); String action = intent.getAction(); BluetoothDevice device = null; - boolean isHandover = true; + boolean isHandover = false; if (action.equals(Intent.ACTION_SEND) || action.equals(Intent.ACTION_SEND_MULTIPLE)) { /* -- 2.11.0