From: peli0101 Date: Sun, 1 Feb 2009 23:00:17 +0000 (+0000) Subject: OI Safe: Fix issue 197: Dialog is now only called from service - not from onActivityR... X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=09e85fa9ca8021c88700ae9f1483131d4f66371a;p=android-vcpass-oisafe OI Safe: Fix issue 197: Dialog is now only called from service - not from onActivityResult - and this seems to work. git-svn-id: http://openintents.googlecode.com/svn/trunk/Safe@1892 72b678ce-9140-0410-bee8-679b907dd61a --- diff --git a/src/org/openintents/safe/IntentHandler.java b/src/org/openintents/safe/IntentHandler.java index 483824a..efd1e73 100644 --- a/src/org/openintents/safe/IntentHandler.java +++ b/src/org/openintents/safe/IntentHandler.java @@ -156,8 +156,10 @@ public class IntentHandler extends Activity { actionDispatch(); } else { // ask first - if (debug) Log.d(TAG, "onActivityResult: showDialogAllowExternalAccess()"); - showDialogAllowExternalAccess(); + //if (debug) Log.d(TAG, "onActivityResult: showDialogAllowExternalAccess()"); + //showDialogAllowExternalAccess(); + + // This is called in onServiceConnected(). } }