I 'm working on a tumbnail that's gonna contain all the friend gravatar with a link to each friend profile .I got every thing working till i add this part. , other_user_page_path(friend.username)
the error is
undefined method `symbolize_keys!' for "/reie":String
here is the entire code
<% current_user.friends_of.each do |friend| %>
<%= link_to image_tag (friend.gravatar_url(:size => 30)) , other_user_page_path(friend.username)%>
<% end %>