mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-03 23:56:07 +02:00
Prevent crash
This commit is contained in:
@@ -5523,7 +5523,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
||||
@Override
|
||||
public AttributeTable getSignedAttributes() {
|
||||
// The certificate validity will be check below
|
||||
return super.getSignedAttributes().remove(CMSAttributes.signingTime);
|
||||
AttributeTable at = super.getSignedAttributes();
|
||||
return (at == null ? null : at.remove(CMSAttributes.signingTime));
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user