mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Clarify behavior for SMS-only conversations
This commit is contained in:
@@ -19,9 +19,13 @@ export function isConversationSMSOnly(
|
||||
return false;
|
||||
}
|
||||
|
||||
if (e164 && !serviceId) {
|
||||
return true;
|
||||
if (serviceId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return conversation.discoveredUnregisteredAt !== undefined;
|
||||
if (!e164) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user