From 6a1cb4d314d3010f9e7aee9dded6cc711084f0e4 Mon Sep 17 00:00:00 2001 From: stom79 Date: Thu, 17 Jan 2019 07:24:57 +0100 Subject: [PATCH] Fix an issue with detailed status --- .../fr/gouv/etalab/mastodon/client/Entities/Status.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/src/main/java/fr/gouv/etalab/mastodon/client/Entities/Status.java b/app/src/main/java/fr/gouv/etalab/mastodon/client/Entities/Status.java index 98d328765..6ded1ef23 100644 --- a/app/src/main/java/fr/gouv/etalab/mastodon/client/Entities/Status.java +++ b/app/src/main/java/fr/gouv/etalab/mastodon/client/Entities/Status.java @@ -158,9 +158,6 @@ public class Status implements Parcelable{ dest.writeParcelable(this.card, flags); dest.writeString(this.language); dest.writeByte(this.isTranslated ? (byte) 1 : (byte) 0); - dest.writeByte(this.isEmojiFound ? (byte) 1 : (byte) 0); - dest.writeByte(this.isEmojiTranslateFound ? (byte) 1 : (byte) 0); - dest.writeByte(this.isClickable ? (byte) 1 : (byte) 0); dest.writeByte(this.isTranslationShown ? (byte) 1 : (byte) 0); dest.writeByte(this.isNew ? (byte) 1 : (byte) 0); dest.writeByte(this.isVisible ? (byte) 1 : (byte) 0); @@ -214,9 +211,6 @@ public class Status implements Parcelable{ this.card = in.readParcelable(Card.class.getClassLoader()); this.language = in.readString(); this.isTranslated = in.readByte() != 0; - this.isEmojiFound = in.readByte() != 0; - this.isEmojiTranslateFound = in.readByte() != 0; - this.isClickable = in.readByte() != 0; this.isTranslationShown = in.readByte() != 0; this.isNew = in.readByte() != 0; this.isVisible = in.readByte() != 0;