Fix an issue with custom emoji

This commit is contained in:
stom79 2018-11-21 10:33:17 +01:00
parent 9f3b989cfb
commit 07bb00b13d
1 changed files with 2 additions and 0 deletions

View File

@ -173,6 +173,7 @@ public class Account implements Parcelable {
protected Account(Parcel in) {
id = in.readString();
username = in.readString();
emojis = in.readArrayList(Emojis.class.getClassLoader());
acct = in.readString();
display_name = in.readString();
host = in.readString();
@ -392,6 +393,7 @@ public class Account implements Parcelable {
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(id);
dest.writeString(username);
dest.writeList(emojis);
dest.writeString(acct);
dest.writeString(display_name);
dest.writeString(host);