fixed an error when there's nothing in the inbox
This commit is contained in:
parent
4d35d96d1c
commit
aaf1fbf42b
|
@ -41,8 +41,9 @@ module ApplicationHelper
|
||||||
.where(user_id: current_user.id)
|
.where(user_id: current_user.id)
|
||||||
.group(:user_id)
|
.group(:user_id)
|
||||||
.order(:count)
|
.order(:count)
|
||||||
.first.count
|
.first
|
||||||
return nil unless count > 0
|
return nil if count.nil?
|
||||||
count
|
return nil unless count.count > 0
|
||||||
|
count.count
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue