adding conditional for only 1-1 convos to disallow disappearing messages.

pull/2222/head
warrickct 4 years ago
parent c0622d47f4
commit 8dfd748ce0

@ -120,8 +120,6 @@ export async function unblockConvoById(conversationId: string) {
await conversation.commit(); await conversation.commit();
} }
/** /**
* marks the conversation's approval fields, sends messageRequestResponse, syncs to linked devices * marks the conversation's approval fields, sends messageRequestResponse, syncs to linked devices
*/ */
@ -334,7 +332,7 @@ export async function setDisappearingMessagesByConvoId(
) { ) {
const conversation = getConversationController().get(conversationId); const conversation = getConversationController().get(conversationId);
if (!conversation.didApproveMe()) { if (!conversation.didApproveMe() && conversation.isPrivate()) {
ToastUtils.pushMustBeApproved(); ToastUtils.pushMustBeApproved();
return; return;
} }

Loading…
Cancel
Save