mirror of
https://github.com/nextcloud/talk-android
synced 2025-02-08 15:42:58 +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
|
var messageInput: EmojiEditText
|
||||||
get() = messageInput
|
get() = super.messageInput
|
||||||
set(messageInput) {
|
set(messageInput) {
|
||||||
super.messageInput = messageInput
|
super.messageInput = messageInput
|
||||||
}
|
}
|
||||||
|
|
||||||
var attachmentButton: ImageButton
|
var attachmentButton: ImageButton
|
||||||
get() = attachmentButton
|
get() = super.attachmentButton
|
||||||
set(attachmentButton) {
|
set(attachmentButton) {
|
||||||
super.attachmentButton = attachmentButton
|
super.attachmentButton = attachmentButton
|
||||||
}
|
}
|
||||||
|
|
||||||
var messageSendButton: ImageButton
|
var messageSendButton: ImageButton
|
||||||
get() = messageSendButton
|
get() = super.messageSendButton
|
||||||
set(messageSendButton) {
|
set(messageSendButton) {
|
||||||
super.messageSendButton = messageSendButton
|
super.messageSendButton = messageSendButton
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user