don't show notification if reaction

This commit is contained in:
2024-09-26 23:47:26 +03:00
parent 0810381455
commit 9b14f5be19
4 changed files with 8 additions and 5 deletions

View File

@@ -621,7 +621,7 @@ export const Group = ({
isExtMsg(group?.data) &&
group?.sender !== myAddress &&
group?.timestamp &&
((!timestampEnterData[group?.groupId] &&
((!timestampEnterData[group?.groupId] && !group?.chatReference &&
Date.now() - group?.timestamp < timeDifferenceForNotificationChats) ||
timestampEnterData[group?.groupId] < group?.timestamp)
) {
@@ -1102,7 +1102,7 @@ export const Group = ({
if (!findGroup) return false;
if (!findGroup?.data || !isExtMsg(findGroup?.data)) return false;
return (
findGroup?.timestamp &&
findGroup?.timestamp && !findGroup?.chatReference &&
((!timestampEnterData[selectedGroup?.groupId] &&
Date.now() - findGroup?.timestamp <
timeDifferenceForNotificationChats) ||
@@ -2101,7 +2101,7 @@ export const Group = ({
/>
)}
{group?.data &&
isExtMsg(group?.data) &&
isExtMsg(group?.data) && !group?.chatReference &&
group?.sender !== myAddress &&
group?.timestamp &&
((!timestampEnterData[group?.groupId] &&