mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-17 11:48:27 +00:00
Fix own reaction refresh issue
This commit is contained in:
parent
58d269a65f
commit
d00257d93c
2 changed files with 2 additions and 2 deletions
|
|
@ -2,6 +2,6 @@ import Foundation
|
|||
|
||||
public enum AppGitInfo {
|
||||
public static let branch = "master"
|
||||
public static let commit = "95a7f0987"
|
||||
public static let commit = "58d269a65"
|
||||
public static let tag = "6.1.0-alpha"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2480,7 +2480,7 @@ class ConversationViewModel: ObservableObject {
|
|||
|
||||
DispatchQueue.main.async {
|
||||
if indexMessageSelected != nil {
|
||||
self.conversationMessagesSection[0].rows[indexMessageSelected!].message.ownReaction = messageToSendReaction?.ownReaction?.body == emoji ? "" : emoji
|
||||
self.conversationMessagesSection[0].rows[indexMessageSelected!].message.ownReaction = messageToSendReaction?.ownReaction?.body ?? ""
|
||||
self.conversationMessagesSection[0].rows[indexMessageSelected!].message.reactions = reactionsTmp
|
||||
}
|
||||
self.selectedMessage = nil
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue