Merge pull request #1597 from makeplane/develop

promote: develop to stage-release
This commit is contained in:
Aaryan Khandelwal 2023-07-20 19:32:04 +05:30 committed by GitHub
commit 30ea1adf61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -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]

View File

@ -74,6 +74,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
} else {
notificationsMutate(
@ -96,6 +97,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
}
};
@ -114,6 +116,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
} else {
notificationsMutate(
@ -127,6 +130,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
}
};
@ -145,6 +149,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
} else {
notificationsMutate(
@ -160,6 +165,7 @@ const useUserNotification = () => {
})
.finally(() => {
notificationsMutate();
mutateNotificationCount();
});
}
};