Clarify function of "Delete" option when deleting conversation messages

This commit is contained in:
trevor-signal
2023-10-30 20:02:50 -04:00
committed by GitHub
parent edd6ed5fab
commit fcf2c0a3f0
7 changed files with 20 additions and 29 deletions

View File

@@ -106,7 +106,7 @@ function searchConversations(
const phoneNumber = parseAndFormatPhoneNumber(searchTerm, regionCode);
const currentConversations = conversations.filter(conversation => {
return !conversation.left && !conversation.hiddenFromConversationSearch;
return !conversation.left;
});
// Escape the search term

View File

@@ -177,9 +177,6 @@ export function getConversation(model: ConversationModel): ConversationType {
groupId: attributes.groupId,
groupLink: buildGroupLink(attributes),
hideStory: Boolean(attributes.hideStory),
hiddenFromConversationSearch: Boolean(
attributes.hiddenFromConversationSearch
),
inboxPosition,
isArchived: attributes.isArchived,
isBlocked: isBlocked(attributes),