mirror of
https://github.com/nextcloud/talk-android
synced 2025-02-08 07:33:36 +00:00
Merge pull request #3974 from nextcloud/bugfix/noid/fixCrashWhenOpenChat
Avoid StackOverflowError when opening chat (kotlin2.0 fix)
This commit is contained in:
commit
cb933be70d
@ -60,19 +60,19 @@ class MessageInput : MessageInput {
|
||||
}
|
||||
|
||||
var messageInput: EmojiEditText
|
||||
get() = messageInput
|
||||
get() = super.messageInput
|
||||
set(messageInput) {
|
||||
super.messageInput = messageInput
|
||||
}
|
||||
|
||||
var attachmentButton: ImageButton
|
||||
get() = attachmentButton
|
||||
get() = super.attachmentButton
|
||||
set(attachmentButton) {
|
||||
super.attachmentButton = attachmentButton
|
||||
}
|
||||
|
||||
var messageSendButton: ImageButton
|
||||
get() = messageSendButton
|
||||
get() = super.messageSendButton
|
||||
set(messageSendButton) {
|
||||
super.messageSendButton = messageSendButton
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user