Fix for user ids in API

This commit is contained in:
Dominik Schürmann 2014-09-07 20:07:13 +02:00
parent ac927df10a
commit 2cebac6a23

View file

@ -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);