aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java
diff options
context:
space:
mode:
authorbcbarnes-gmx <bcbarnes@gmx.com>2013-07-22 14:14:06 -0500
committerbcbarnes-gmx <bcbarnes@gmx.com>2013-07-22 14:14:06 -0500
commit2ad6cca924364baaab7f1c0f257258f4c2303e62 (patch)
treedce45b19b72c27c1547286227adef9c47a402ba0 /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java
parentcb2d2ba0c23772eba9b90b54c1470d7ba058f518 (diff)
downloadopen-keychain-2ad6cca924364baaab7f1c0f257258f4c2303e62.tar.gz
open-keychain-2ad6cca924364baaab7f1c0f257258f4c2303e62.tar.bz2
open-keychain-2ad6cca924364baaab7f1c0f257258f4c2303e62.zip
Issue #61 - Unable to upload public keys to PKS
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java')
-rw-r--r--OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java
index 648b09ef7..d04cdcaad 100644
--- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java
+++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/KeyListPublicFragment.java
@@ -116,7 +116,7 @@ public class KeyListPublicFragment extends KeyListFragment implements
case Id.menu.exportToServer:
Intent uploadIntent = new Intent(mKeyListActivity, KeyServerUploadActivity.class);
uploadIntent.setAction(KeyServerUploadActivity.ACTION_EXPORT_KEY_TO_SERVER);
- uploadIntent.putExtra(KeyServerUploadActivity.EXTRA_KEYRING_ROW_ID, keyRingRowId);
+ uploadIntent.putExtra(KeyServerUploadActivity.EXTRA_KEYRING_ROW_ID, (int)keyRingRowId);
startActivityForResult(uploadIntent, Id.request.export_to_server);
return true;