Filter emoji where "visible_in_picker" is set to false. (#907)
Addresses #770
This commit is contained in:
parent
6960d725a3
commit
b483a0bf25
3 changed files with 9 additions and 3 deletions
|
@ -16,10 +16,12 @@
|
|||
package com.keylesspalace.tusky.entity
|
||||
|
||||
import android.os.Parcelable
|
||||
import com.google.gson.annotations.SerializedName
|
||||
import kotlinx.android.parcel.Parcelize
|
||||
|
||||
@Parcelize
|
||||
data class Emoji(
|
||||
val shortcode: String,
|
||||
val url: String
|
||||
val url: String,
|
||||
@SerializedName("visible_in_picker") val visibleInPicker: Boolean?
|
||||
) : Parcelable
|
Loading…
Add table
Add a link
Reference in a new issue