mirror of https://github.com/M66B/FairEmail.git
Remove uuids
This commit is contained in:
parent
b19dd4f9bb
commit
55a111090f
|
@ -1315,13 +1315,18 @@ public class FragmentCompose extends FragmentBase {
|
||||||
intent.putExtra(OpenPgpApi.EXTRA_SIGN_KEY_ID, data.getLongExtra(OpenPgpApi.EXTRA_SIGN_KEY_ID, -1));
|
intent.putExtra(OpenPgpApi.EXTRA_SIGN_KEY_ID, data.getLongExtra(OpenPgpApi.EXTRA_SIGN_KEY_ID, -1));
|
||||||
intent.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
|
intent.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
|
||||||
encrypt(intent);
|
encrypt(intent);
|
||||||
} else
|
} else {
|
||||||
|
data.removeExtra(OpenPgpApi.EXTRA_CALL_UUID1);
|
||||||
|
data.removeExtra(OpenPgpApi.EXTRA_CALL_UUID2);
|
||||||
encrypt(data);
|
encrypt(data);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else if (requestCode == ActivityCompose.REQUEST_ENCRYPT || requestCode == ActivityCompose.REQUEST_SIGN) {
|
} else if (requestCode == ActivityCompose.REQUEST_ENCRYPT || requestCode == ActivityCompose.REQUEST_SIGN) {
|
||||||
if (data != null) {
|
if (data != null) {
|
||||||
if (BuildConfig.BETA_RELEASE)
|
if (BuildConfig.BETA_RELEASE)
|
||||||
Log.logExtras(data);
|
Log.logExtras(data);
|
||||||
|
data.removeExtra(OpenPgpApi.EXTRA_CALL_UUID1);
|
||||||
|
data.removeExtra(OpenPgpApi.EXTRA_CALL_UUID2);
|
||||||
encrypt(data);
|
encrypt(data);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue