diff --git a/lib/hooks/relationship-hooks.js b/lib/hooks/relationship-hooks.js --- a/lib/hooks/relationship-hooks.js +++ b/lib/hooks/relationship-hooks.js @@ -12,7 +12,7 @@ import { dmOperationSpecificationTypes } from '../shared/dm-ops/dm-op-utils.js'; import { useProcessAndSendDMOperation } from '../shared/dm-ops/process-dm-ops.js'; import { - userSupportsThickThreads, + userHasDeviceList, getPendingThreadID, } from '../shared/thread-utils.js'; import type { RelationshipOperation } from '../types/messages/update-relationship.js'; @@ -123,10 +123,7 @@ } const planForUsers = new Map(); for (const userID of userIDs) { - const supportsThickThreads = userSupportsThickThreads( - userID, - auxUserInfos, - ); + const supportsThickThreads = userHasDeviceList(userID, auxUserInfos); if (!supportsThickThreads) { planForUsers.set(userID, { plan: 'send_to_thin_thread' }); continue; @@ -266,10 +263,7 @@ } const { action, userIDs, waitingForUserIDs, resolve, reject } = step; for (const userID of waitingForUserIDs) { - const supportsThickThreads = userSupportsThickThreads( - userID, - auxUserInfos, - ); + const supportsThickThreads = userHasDeviceList(userID, auxUserInfos); if (!supportsThickThreads) { // It's safe to wait until every single user ID in waitingForUserIDs // passes this check because we make the same check when populating @@ -313,10 +307,7 @@ const missingDeviceListsUserIDs: Array = []; for (const userID of userIDs) { - const supportsThickThreads = userSupportsThickThreads( - userID, - auxUserInfos, - ); + const supportsThickThreads = userHasDeviceList(userID, auxUserInfos); if (!supportsThickThreads) { missingDeviceListsUserIDs.push(userID); } diff --git a/lib/shared/dm-ops/dm-op-utils.js b/lib/shared/dm-ops/dm-op-utils.js --- a/lib/shared/dm-ops/dm-op-utils.js +++ b/lib/shared/dm-ops/dm-op-utils.js @@ -47,7 +47,7 @@ import { getContentSigningKey } from '../../utils/crypto-utils.js'; import { useSelector } from '../../utils/redux-utils.js'; import { messageSpecs } from '../messages/message-specs.js'; -import { userSupportsThickThreads } from '../thread-utils.js'; +import { userHasDeviceList } from '../thread-utils.js'; import { updateSpecs } from '../updates/update-specs.js'; function generateMessagesToPeers( @@ -134,10 +134,7 @@ (userIDs: $ReadOnlyArray) => { const missingDeviceListsUserIDs: Array = []; for (const userID of userIDs) { - const supportsThickThreads = userSupportsThickThreads( - userID, - auxUserInfos, - ); + const supportsThickThreads = userHasDeviceList(userID, auxUserInfos); if (!supportsThickThreads) { missingDeviceListsUserIDs.push(userID); } diff --git a/lib/shared/search-utils.js b/lib/shared/search-utils.js --- a/lib/shared/search-utils.js +++ b/lib/shared/search-utils.js @@ -7,7 +7,7 @@ import { getContainingThreadID, userIsMember, - userSupportsThickThreads, + userHasDeviceList, } from './thread-utils.js'; import { searchMessagesActionTypes, @@ -165,7 +165,7 @@ return !!( threadType && threadTypeIsThick(threadType) && - !userSupportsThickThreads(userID, auxUserInfos) + !userHasDeviceList(userID, auxUserInfos) ); }, [auxUserInfos, excludeUserIDs, threadType], diff --git a/lib/shared/thread-actions-utils.js b/lib/shared/thread-actions-utils.js --- a/lib/shared/thread-actions-utils.js +++ b/lib/shared/thread-actions-utils.js @@ -6,7 +6,7 @@ threadIsPending, threadOtherMembers, pendingThreadType, - userSupportsThickThreads, + userHasDeviceList, } from './thread-utils.js'; import { newThreadActionTypes, @@ -138,7 +138,7 @@ 'otherMemberIDs should not be empty for threads', ); const allUsersSupportThickThreads = otherMemberIDs.every(memberID => - userSupportsThickThreads(memberID, auxUserInfos), + userHasDeviceList(memberID, auxUserInfos), ); if (threadTypeIsThick(threadInfo.type) && allUsersSupportThickThreads) { const type = assertThickThreadType( diff --git a/lib/shared/thread-utils.js b/lib/shared/thread-utils.js --- a/lib/shared/thread-utils.js +++ b/lib/shared/thread-utils.js @@ -1796,7 +1796,7 @@ }; } -function userSupportsThickThreads( +function userHasDeviceList( userID: string, auxUserInfos: AuxUserInfos, ): boolean { @@ -1872,5 +1872,5 @@ extractMentionedMembers, isMemberActive, createThreadTimestamps, - userSupportsThickThreads, + userHasDeviceList, };