aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorPhilip Arndt <git@p.arndt.io>2015-03-05 11:52:10 +1300
committerPhilip Arndt <git@p.arndt.io>2015-03-05 12:38:47 +1300
commitb4064c760b80c99850527d50984cc6e611168a05 (patch)
tree69ac21bb3dc134bf8934ad4f347e47187f88d7c5 /app/controllers
parentdff7379738dd1318783dd3135a59a480d3f1432f (diff)
downloadrefinerycms-blog-b4064c760b80c99850527d50984cc6e611168a05.tar.gz
refinerycms-blog-b4064c760b80c99850527d50984cc6e611168a05.tar.bz2
refinerycms-blog-b4064c760b80c99850527d50984cc6e611168a05.zip
Fixed test failures relating to not finding the title.
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/refinery/blog/posts_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/refinery/blog/posts_controller.rb b/app/controllers/refinery/blog/posts_controller.rb
index 1cc9698..2e504f7 100644
--- a/app/controllers/refinery/blog/posts_controller.rb
+++ b/app/controllers/refinery/blog/posts_controller.rb
@@ -41,7 +41,7 @@ module Refinery
if @comment.valid?
if Comment::Moderation.enabled? or @comment.ham?
begin
- CommentMailer.notification(@comment, request).deliver
+ CommentMailer.notification(@comment, request).deliver_now
rescue
logger.warn "There was an error delivering a blog comment notification.\n#{$!}\n"
end