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