BUGFIX: rescue should splat

This commit is contained in:
Sam 2014-03-09 23:06:54 +11:00
parent 6b241a5ebf
commit b7ece53966
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ module Email
begin
@message.deliver
rescue SMTP_CLIENT_ERRORS => e
rescue *SMTP_CLIENT_ERRORS => e
return skip(e.message)
end