Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit b1da765

Browse files
Merge pull request #116 from Human-Connection/Notification-Bugfix
Fixed doubled notification issue
2 parents 4aa7d3f + c78f503 commit b1da765

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

server/services/comments/comments.hooks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ module.exports = {
120120
createNotifications()
121121
],
122122
update: [
123-
createMentionNotifications()
123+
// createMentionNotifications()
124124
],
125125
patch: [
126-
createMentionNotifications()
126+
// createMentionNotifications()
127127
],
128128
remove: []
129129
},

server/services/contributions/contributions.hooks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,11 @@ module.exports = {
225225
thumbnails(thumbs)
226226
],
227227
update: [
228-
createMentionNotifications(),
228+
// createMentionNotifications(),
229229
thumbnails(thumbs)
230230
],
231231
patch: [
232-
createMentionNotifications(),
232+
// createMentionNotifications(),
233233
thumbnails(thumbs)
234234
],
235235
remove: [

0 commit comments

Comments
 (0)