mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 21:19:41 -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
|
class NotifyMailingListSubscribers < Jobs::Base
|
||||||
|
|
||||||
def execute(args)
|
def execute(args)
|
||||||
|
return if SiteSetting.disable_mailing_list_mode
|
||||||
|
|
||||||
post_id = args[:post_id]
|
post_id = args[:post_id]
|
||||||
post = post_id ? Post.with_deleted.find_by(id: post_id) : nil
|
post = post_id ? Post.with_deleted.find_by(id: post_id) : nil
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user