Fix read of incorrect value while parceling
This commit is contained in:
parent
ccf98177e5
commit
8472d64731
1 changed files with 1 additions and 1 deletions
|
@ -263,7 +263,7 @@ public class OpenPgpKeyPreference extends Preference implements OpenPgpApiManage
|
|||
public SavedState(Parcel source) {
|
||||
super(source);
|
||||
|
||||
keyId = source.readInt();
|
||||
keyId = source.readLong();
|
||||
defaultUserId = source.readString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue