Fix for user ids in API
This commit is contained in:
parent
ac927df10a
commit
2cebac6a23
|
@ -137,7 +137,7 @@ public class OpenPgpSignatureResult implements Parcelable {
|
||||||
dest.writeString(primaryUserId);
|
dest.writeString(primaryUserId);
|
||||||
dest.writeLong(keyId);
|
dest.writeLong(keyId);
|
||||||
// version 2
|
// version 2
|
||||||
dest.writeList(userIds);
|
dest.writeStringList(userIds);
|
||||||
// Go back and write the size
|
// Go back and write the size
|
||||||
int parcelableSize = dest.dataPosition() - startPosition;
|
int parcelableSize = dest.dataPosition() - startPosition;
|
||||||
dest.setDataPosition(sizePosition);
|
dest.setDataPosition(sizePosition);
|
||||||
|
|
Loading…
Reference in a new issue