# This works fine as expected, it shows that I have a Subscriber object
@subscribers = Subscriber.find(:all)
flash[:debug] = @subscribers.first.class
#This one throws an exception "Subscriber can't be referred", but it's the same subscriber as above...
@subscribers = User.find(current_user).subscribers
flash[:debug] = @subscribers.first.class