mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 23:25:20 +03:00
Fix enum and make it a parcel again
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
9312a62af9
commit
e74a3e49e7
1 changed files with 2 additions and 1 deletions
|
@ -191,7 +191,8 @@ data class Conversation(
|
|||
CONVERSATION_READ_WRITE, CONVERSATION_READ_ONLY
|
||||
}
|
||||
|
||||
enum class ConversationType {
|
||||
@Parcelize
|
||||
enum class ConversationType : Parcelable {
|
||||
DUMMY, ROOM_TYPE_ONE_TO_ONE_CALL, ROOM_GROUP_CALL, ROOM_PUBLIC_CALL, ROOM_SYSTEM
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue