Fix ringer updates
This commit is contained in:
parent
22acb57078
commit
59d9807301
2 changed files with 6 additions and 4 deletions
|
@ -1448,10 +1448,10 @@ export function getPropsForCallHistory(
|
|||
const isSelectMode = selectedMessageIds != null;
|
||||
|
||||
let callCreator: ConversationType | null = null;
|
||||
if (callHistory.ringerId) {
|
||||
callCreator = conversationSelector(callHistory.ringerId);
|
||||
} else if (callHistory.direction === CallDirection.Outgoing) {
|
||||
if (callHistory.direction === CallDirection.Outgoing) {
|
||||
callCreator = conversationSelector(ourConversationId);
|
||||
} else if (callHistory.ringerId) {
|
||||
callCreator = conversationSelector(callHistory.ringerId);
|
||||
}
|
||||
|
||||
if (callHistory.mode === CallMode.Direct) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue