Change-Id: I753b55dd77b20e5082db77cc5e89e9e10c7a30c2
Signed-off-by: seolheui kim <s414.kim@samsung.com>
Vconf cryptoState(VCONFKEY_SDE_CRYPTO_STATE);
std::string state(cryptoState.getString());
- if (!state.compare("error_partially_encrypted")) {
+ if (!state.compare("error_partially_encrypted") ||
+ !state.compare("error_partially_decrypted")) {
retryCrypto(data);
} else {
AppControl appControl("org.tizen.ode");
void ExternalDecryptProgress::cryptoStateChangedCallback()
{
std::string state(cryptoState.getString());
- if (!state.compare("error_partially_encrypted")) {
+ if (!state.compare("error_partially_decrypted")) {
retryPopup.show();
retryPopup.createNotification();
}