<%= image_tag this.profile.expiring_url(180) %>
keeps giving me grief when profile is nil... what can i do?
Thanks in advance!
keeps giving me grief when profile is nil... what can i do? Thanks in advance! |
||||
|
|
|
This should work, too
|
|||
|
|
|
Always check if a variable is
I'm sure there's a more elegant solution to the problem, but that should get you started. |
|||
|
|
|
First you'd need to decide what you want to do when there is no profile. Do you want to display a default image? No image at all? Assuming you wanted to display a default image, you could add a method to your helper:
and then call that helper method in your view:
|
|||
|
|