Skip to content

Commit

Permalink
Merge pull request #1597 from makeplane/develop
Browse files Browse the repository at this point in the history
promote: develop to stage-release
  • Loading branch information
aaryan610 committed Jul 20, 2023
2 parents bca7499 + 546aa40 commit 30ea1ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions apiserver/plane/bgtasks/issue_activites_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -1129,6 +1129,7 @@ def issue_activity(
issue is not None
and issue.created_by_id is not None
and not issue.created_by.is_bot
and str(issue.created_by_id) != str(actor_id)
):
issue_subscribers = issue_subscribers + [issue.created_by_id]

Expand Down
6 changes: 6 additions & 0 deletions apps/app/hooks/use-user-notifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
} else {
notificationsMutate(
Expand All @@ -96,6 +97,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
}
};
Expand All @@ -114,6 +116,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
} else {
notificationsMutate(
Expand All @@ -127,6 +130,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
}
};
Expand All @@ -145,6 +149,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
} else {
notificationsMutate(
Expand All @@ -160,6 +165,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
}
};
Expand Down

0 comments on commit 30ea1ad

Please sign in to comment.