Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-01-29 09:37:22 +01:00
Родитель 9a288a52b6
Коммит 6d162dc025
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -310,7 +310,7 @@ class Notifier {
* @return bool
*/
private function shouldUserBeNotified($userId, IComment $comment): bool {
if ($userId === $comment->getActorId()) {
if ($comment->getActorType() === 'users' && $userId === $comment->getActorId()) {
// Do not notify the user if they mentioned themselves
return false;
}