Its not bash, Its find who treats a symbolic link as a symbolic link and reads the property from itself, Not reading property from the file it points to. See what find(1) says,
Never follow symbolic links. This is the default behaviour. When find examines or prints information a file, and the file is a symbolic link, the information used shall be taken from the properties of the symbolic link itself.
To treat it as a directory you need to use -L option.
When the -L option is in effect, the -type predicate will always match against the type of the file that a symbolic link points to rather than the link itself (unless the symbolic link is broken). Using -L causes the -lname and -ilname predicates always to return false.
My guess is when you pass a trailing slash / bash tries to resolve it and find sees it as a directory. If you are sure that there is no recursive symbolic links in a directory tree you can call find with -L option. So following command should work.
find -L /home/zzz -type f