diff --git a/src/main/scala/util/Notifier.scala b/src/main/scala/util/Notifier.scala index b9ed57995..4fc522f92 100644 --- a/src/main/scala/util/Notifier.scala +++ b/src/main/scala/util/Notifier.scala @@ -26,7 +26,7 @@ trait Notifier extends RepositoryService with AccountService with IssuesService ) .distinct .withFilter ( _ != context.loginAccount.get.userName ) // the operation in person is excluded - .foreach ( getAccountByUserName(_) foreach (x => notify(x.mailAddress)) ) + .foreach ( getAccountByUserName(_) filterNot (_.isGroupAccount) foreach (x => notify(x.mailAddress)) ) }