mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-20 06:47:06 -04:00
[app] fix NPE when serializing apkFile
This commit is contained in:
@@ -322,7 +322,7 @@ public class Apk implements Comparable<Apk>, Parcelable {
|
||||
dest.writeStringArray(this.nativecode);
|
||||
dest.writeString(this.sig);
|
||||
dest.writeByte(this.compatible ? (byte) 1 : (byte) 0);
|
||||
dest.writeString(this.apkFile.serialize());
|
||||
dest.writeString(this.apkFile != null ? this.apkFile.serialize() : null);
|
||||
dest.writeSerializable(this.installedFile);
|
||||
dest.writeString(this.srcname);
|
||||
dest.writeString(this.repoAddress);
|
||||
|
||||
Reference in New Issue
Block a user