mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:24:05 -06:00
don't run mailing list if mailing list mode is disabled
This commit is contained in:
parent
d09a20210b
commit
a202ec2028
@ -3,6 +3,8 @@ module Jobs
|
||||
class NotifyMailingListSubscribers < Jobs::Base
|
||||
|
||||
def execute(args)
|
||||
return if SiteSetting.disable_mailing_list_mode
|
||||
|
||||
post_id = args[:post_id]
|
||||
post = post_id ? Post.with_deleted.find_by(id: post_id) : nil
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user