Fix SMS-only check for unregistered convo

This commit is contained in:
Fedor Indutny 2021-06-01 13:10:19 -07:00 committed by GitHub
parent 373ffe4663
commit 6e19383a7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 6 deletions

View file

@ -1,8 +1,6 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isConversationUnregistered } from './isConversationUnregistered';
export type MinimalConversationType = Readonly<{
type?: string;
e164?: string;
@ -23,5 +21,5 @@ export function isConversationSMSOnly(
return true;
}
return isConversationUnregistered(conversation);
return conversation.discoveredUnregisteredAt !== undefined;
}