mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 21:45:42 +03:00
show call reactions from other participants
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
c379630610
commit
6d735dd537
2 changed files with 2 additions and 0 deletions
|
@ -2910,6 +2910,7 @@ public class CallActivity extends CallBaseActivity {
|
|||
|
||||
@Override
|
||||
public void onReaction(String reaction) {
|
||||
addCallReaction(reaction, callParticipantModel.getNick());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -122,6 +122,7 @@ class MoreCallActionsDialog(private val callActivity: CallActivity) : BottomShee
|
|||
emojiView.layoutParams = param
|
||||
|
||||
emojiView.setOnClickListener { view ->
|
||||
// TODO: send signaling messages instead to directly show reaction on own device
|
||||
callActivity.addCallReaction(
|
||||
(view as EmojiTextView).text.toString(),
|
||||
callActivity.conversationUser.displayName
|
||||
|
|
Loading…
Reference in a new issue