DecryptFiles: Reset state for new file decrytion

This commit is contained in:
Dominik Schürmann
2014-09-24 01:46:54 +02:00
parent 6e0938aa93
commit 3850ddea08

View File

@@ -88,6 +88,9 @@ public class DecryptFilesFragment extends DecryptFragment {
mDecryptButton = view.findViewById(R.id.decrypt_file_action_decrypt); mDecryptButton = view.findViewById(R.id.decrypt_file_action_decrypt);
view.findViewById(R.id.decrypt_file_browse).setOnClickListener(new View.OnClickListener() { view.findViewById(R.id.decrypt_file_browse).setOnClickListener(new View.OnClickListener() {
public void onClick(View v) { public void onClick(View v) {
// reset state
mPassphrase = null;
mNfcDecryptedSessionKey = null;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
FileHelper.openDocument(DecryptFilesFragment.this, "*/*", REQUEST_CODE_INPUT); FileHelper.openDocument(DecryptFilesFragment.this, "*/*", REQUEST_CODE_INPUT);
} else { } else {
@@ -139,7 +142,6 @@ public class DecryptFilesFragment extends DecryptFragment {
return; return;
} }
// askForOutputFilename();
decryptOriginalFilename(); decryptOriginalFilename();
} }