forked from github/plane
Merge pull request #1597 from makeplane/develop
promote: develop to stage-release
This commit is contained in:
commit
30ea1adf61
@ -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]
|
||||
|
||||
|
@ -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();
|
||||
});
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user