rename extra of import

This commit is contained in:
Dominik Schürmann
2013-09-10 00:39:41 +02:00
parent e7a4297651
commit 56e09b0550
4 changed files with 7 additions and 7 deletions

View File

@@ -228,7 +228,7 @@ public class KeyServerQueryActivity extends SherlockFragmentActivity {
Intent intent = new Intent(KeyServerQueryActivity.this,
ImportKeysActivity.class);
intent.setAction(ImportKeysActivity.ACTION_IMPORT_KEY);
intent.putExtra(ImportKeysActivity.EXTRA_KEYRING_BYTES, mKeyData.getBytes());
intent.putExtra(ImportKeysActivity.EXTRA_KEY_BYTES, mKeyData.getBytes());
startActivity(intent);
}
}