Fixed PGP/stripped

This commit is contained in:
M66B
2024-08-07 08:02:05 +02:00
parent 059d6d3ce3
commit 3bf0c9f8e7

View File

@@ -9554,7 +9554,15 @@ public class FragmentMessages extends FragmentBase
String text = context.getString(R.string.title_signature_invalid_reason, Integer.toString(sresult));
args.putString("sigresult", text);
} else {
onPgp(data, auto, true);
View v = view;
if (v == null)
return null;
v.post(new RunnableEx("stripped") {
@Override
protected void delegate() {
onPgp(data, auto, true);
}
});
return null;
}
}