Avoid error 500 when todo author was removed

This commit is contained in:
Douglas Barbosa Alexandre 2016-03-09 14:47:04 -03:00
parent cac83cead5
commit 7500a12aae
2 changed files with 5 additions and 2 deletions

View File

@ -72,7 +72,7 @@ module ApplicationHelper
if user_or_email.is_a?(User)
user = user_or_email
else
user = User.find_by(email: user_or_email.downcase)
user = User.find_by(email: user_or_email.try(:downcase))
end
if user

View File

@ -4,7 +4,10 @@
.todo-title
%span.author-name
= link_to_author todo
- if todo.author
= link_to_author(todo)
- else
(removed)
%span.todo-label
= todo_action_name(todo)
= todo_target_link(todo)