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
|
issue is not None
|
||||||
and issue.created_by_id is not None
|
and issue.created_by_id is not None
|
||||||
and not issue.created_by.is_bot
|
and not issue.created_by.is_bot
|
||||||
|
and str(issue.created_by_id) != str(actor_id)
|
||||||
):
|
):
|
||||||
issue_subscribers = issue_subscribers + [issue.created_by_id]
|
issue_subscribers = issue_subscribers + [issue.created_by_id]
|
||||||
|
|
||||||
|
@ -74,6 +74,7 @@ const useUserNotification = () => {
|
|||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
notificationsMutate();
|
notificationsMutate();
|
||||||
|
mutateNotificationCount();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
notificationsMutate(
|
notificationsMutate(
|
||||||
@ -96,6 +97,7 @@ const useUserNotification = () => {
|
|||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
notificationsMutate();
|
notificationsMutate();
|
||||||
|
mutateNotificationCount();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -114,6 +116,7 @@ const useUserNotification = () => {
|
|||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
notificationsMutate();
|
notificationsMutate();
|
||||||
|
mutateNotificationCount();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
notificationsMutate(
|
notificationsMutate(
|
||||||
@ -127,6 +130,7 @@ const useUserNotification = () => {
|
|||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
notificationsMutate();
|
notificationsMutate();
|
||||||
|
mutateNotificationCount();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -145,6 +149,7 @@ const useUserNotification = () => {
|
|||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
notificationsMutate();
|
notificationsMutate();
|
||||||
|
mutateNotificationCount();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
notificationsMutate(
|
notificationsMutate(
|
||||||
@ -160,6 +165,7 @@ const useUserNotification = () => {
|
|||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
notificationsMutate();
|
notificationsMutate();
|
||||||
|
mutateNotificationCount();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user