aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java
diff options
context:
space:
mode:
authorbcbarnes-gmx <bcbarnes@gmx.com>2013-07-23 07:49:34 -0500
committerbcbarnes-gmx <bcbarnes@gmx.com>2013-07-23 07:49:34 -0500
commit3d6ae3ee83a8378d74283e64cd2286fd0cafea21 (patch)
treea2018f0f13ae4f4fde334e23fadf0f6e40d44455 /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java
parentf608fc123fbd23bce1f8ab12c927b1b9fc9d619c (diff)
downloadopen-keychain-3d6ae3ee83a8378d74283e64cd2286fd0cafea21.tar.gz
open-keychain-3d6ae3ee83a8378d74283e64cd2286fd0cafea21.tar.bz2
open-keychain-3d6ae3ee83a8378d74283e64cd2286fd0cafea21.zip
Implemented issue #53 - Change intent actions from extra ints to intent actions
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java')
-rw-r--r--OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java
index df8b7b374..b409698b0 100644
--- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java
+++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyServerQueryActivity.java
@@ -168,7 +168,7 @@ public class KeyServerQueryActivity extends SherlockFragmentActivity {
// Send all information needed to service to query keys in other thread
Intent intent = new Intent(this, KeychainIntentService.class);
- intent.putExtra(KeychainIntentService.EXTRA_ACTION, KeychainIntentService.ACTION_QUERY_KEYRING);
+ intent.setAction(KeychainIntentService.ACTION_QUERY_KEYRING);
// fill values for this action
Bundle data = new Bundle();