Fix enum and make it a parcel again

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-05-17 20:20:49 +02:00
parent 9312a62af9
commit e74a3e49e7
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -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
}
}