Skip to content

Commit

Permalink
Fix nil subject
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Groeneveld committed Aug 27, 2014
1 parent 8705105 commit 08be048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/mailers/notification_mailer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def new_ticket(ticket)
return
end

title = I18n::translate(:new_ticket) + ': ' + ticket.subject
title = I18n::translate(:new_ticket) + ': ' + ticket.subject.to_s

add_attachments(ticket)

Expand Down

0 comments on commit 08be048

Please sign in to comment.