Fix ringer updates

This commit is contained in:
Jamie Kyle 2024-07-25 07:57:20 -07:00 committed by GitHub
parent 22acb57078
commit 59d9807301
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View file

@ -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) {