fix CryptoOperationFragment infinite recursion

This commit is contained in:
Adithya Abraham Philip
2015-07-02 03:20:06 +05:30
parent b2de6cb2a4
commit 0ccead2125

View File

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