mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-25 10:12:18 -05:00
Fix nullpointer with new OpenPgpSignatureResult version
This commit is contained in:
parent
8b36d28668
commit
f6d678cbe5
@ -156,6 +156,7 @@ public class OpenPgpSignatureResult implements Parcelable {
|
|||||||
vr.signatureOnly = source.readByte() == 1;
|
vr.signatureOnly = source.readByte() == 1;
|
||||||
vr.primaryUserId = source.readString();
|
vr.primaryUserId = source.readString();
|
||||||
vr.keyId = source.readLong();
|
vr.keyId = source.readLong();
|
||||||
|
vr.userIds = new ArrayList<String>();
|
||||||
source.readStringList(vr.userIds);
|
source.readStringList(vr.userIds);
|
||||||
|
|
||||||
// skip over all fields added in future versions of this parcel
|
// skip over all fields added in future versions of this parcel
|
||||||
|
Loading…
Reference in New Issue
Block a user