File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
lib/src/main/kotlin/com/wire/sdk Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,12 @@ sealed class EventContentDTO {
98
98
@SerialName(" time" ) val time : Instant ,
99
99
@SerialName(" data" ) val data : String
100
100
) : Conversation()
101
+
102
+ @Serializable
103
+ @SerialName(" conversation.typing" )
104
+ data class Typing (
105
+ @SerialName(" qualified_conversation" ) val qualifiedConversation : QualifiedId ,
106
+ ) : Conversation()
101
107
}
102
108
103
109
@Serializable
Original file line number Diff line number Diff line change @@ -179,6 +179,10 @@ internal class EventsRouter internal constructor(
179
179
}
180
180
}
181
181
182
+ is EventContentDTO .Conversation .Typing -> {
183
+ // Ignore silently
184
+ }
185
+
182
186
is EventContentDTO .Unknown -> {
183
187
logger.warn(" Unknown event type: {}" , event)
184
188
}
You can’t perform that action at this time.
0 commit comments