Merge pull request #1396 from open-keychain/fix-certify

Fix CryptoOperationFragment infinite recursion
This commit is contained in:
Dominik Schürmann
2015-07-02 00:01:30 +02:00

View File

@@ -56,7 +56,7 @@ public abstract class CryptoOperationFragment<T extends Parcelable, S extends Op
} }
protected void cryptoOperation(CryptoInputParcel cryptoInput) { protected void cryptoOperation(CryptoInputParcel cryptoInput) {
cryptoOperation(cryptoInput); cryptoOperation(cryptoInput, true);
} }
protected void cryptoOperation(CryptoInputParcel cryptoInput, boolean showProgress) { protected void cryptoOperation(CryptoInputParcel cryptoInput, boolean showProgress) {