I'm trying to do something like so:
link_to_unless_current "Inbox", messages_path(:inbox => true)
But, it seems that link_to_unless_current only works if I go to "http://localhost/messages" and not "http://localhost/messages?inbox=true" (i.e. it doesn't give a link for the latter which is correct, but it does for the former which is incorrect).
Any ideas on how to make:
link_to_unless_current "Inbox", messages_path(:inbox => true)
work correctly?