We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7413ad commit 341fb17Copy full SHA for 341fb17
src/main/scala/gitbucket/notifications/service/NotificationsHook.scala
@@ -179,8 +179,12 @@ class IssueHook extends gitbucket.core.plugin.IssueHook
179
.filterNot (_.isGroupAccount)
180
.filterNot (LDAPUtil.isDummyMailAddress)
181
.filterNot (isDisableEmailNotification)
182
- .map (_.mailAddress)
183
- )
+ .map (account =>
+ account.mailAddress :: getAccountExtraMailAddresses(account.userName)
184
+ )
185
186
+ .flatten
187
+ .distinct
188
}
189
190
0 commit comments