"messageRequestAcceptedOurs":"You have accepted $name$'s message request",
"messageRequestAcceptedOursNoName":"You have accepted the message request",
"declineRequestMessage":"Are you sure you want to decline this message request?",
"deleteGroupRequest":"Are you sure you want to delete this group invite?",
"deleteGroupRequestAndBlock":"Are you sure you want to block <b>$name$</b>? Blocked users cannot send you message requests, group invites or call you.",
"respondingToRequestWarning":"Sending a message to this user will automatically accept their message request and reveal your Session ID.",
"respondingToGroupRequestWarning":"Sending a message to this group will automatically accept the group invite.",
"userInvitedYouToGroup":"<b>$name$</b> invited you to join <b>$groupName$</b>.",
window.inboxStore.dispatch(groupInfoActions.loadMetaDumpsFromDB());// this loads the dumps from DB and fills the 03-groups slice with the corresponding details
// this will update the value in the wrapper if needed but not remove the entry if we want it gone. The remove is done below with removeContactFromWrapper
awaitconversationToDecline.commit();
if(blockContact){
awaitblockConvoById(conversationId);
if(alsoBlock){
if(PubKey.is03Pubkey(conversationId)){
// Note: if we do want to block this convo, we actually want to block the person who invited us, not the 03 pubkey itself
isTrustedForAttachmentDownload: boolean;// not synced accross devices, this field is used if we should auto download attachments from this conversation or not
conversationIdOrigin?: string;// Blinded message requests ONLY: The community from which this conversation originated from
conversationIdOrigin?: string;// The conversation from which this conversation originated from: blinded message request or 03-group admin who invited us
// TODOLATER those two items are only used for legacy closed groups and will be removed when we get rid of the legacy closed groups support
lastJoinedTimestamp: number;// ClosedGroup: last time we were added to this group // TODOLATER to remove after legacy closed group are dropped