do not alert on deleted posts
This commit is contained in:
parent
b7e7da766d
commit
6fab03b777
|
@ -2,9 +2,11 @@ module Jobs
|
||||||
class PostAlert < Jobs::Base
|
class PostAlert < Jobs::Base
|
||||||
|
|
||||||
def execute(args)
|
def execute(args)
|
||||||
post = Post.find(args[:post_id])
|
# maybe it was removed by the time we are making the post
|
||||||
|
if post = Post.find_by(id: args[:post_id])
|
||||||
PostAlerter.post_created(post)
|
PostAlerter.post_created(post)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue