Ticket #2247: trac-no-notify-updater-2247.patch
| File trac-no-notify-updater-2247.patch, 0.8 KB (added by nielsen@…, 2 years ago) |
|---|
-
trac/ticket/notification.py
old new 247 247 248 248 if not notify_updater: 249 249 filter_out = True 250 if notify_reporter and (updater == self.reporter):251 filter_out = False252 if notify_owner and (updater == self.owner):253 filter_out = False250 # if notify_reporter and (updater == self.reporter): 251 # filter_out = False 252 # if notify_owner and (updater == self.owner): 253 # filter_out = False 254 254 if filter_out: 255 255 torecipients = [r for r in torecipients if r and r != updater] 256 ccrecipients = [r for r in ccrecipients if r and r != updater] 256 257 elif updater: 257 258 torecipients.append(updater)
