So I recently discovered a glitch in the android app while streaming music in my car.
Granted, some of this is conjecture based on how I think the code works. I haven't myself bothered to look at it in depth.
When streaming a song on your android, the app seems to first search your cache directory on your phone and, if the song name is found, it plays it off your phone to save the trouble of making a network call. If it's not found, then it calls the database and downloads the track into your cache.
I discovered that this is kind of flawed if you have two separate songs which happen to have the same name. In my particular case, when you play the first song, it is downloaded and stored in cache. Then when you try to play the second song, it finds the song name in your cache folder and incorrectly plays that track instead of the one you wanted.
I don't exactly know Subsonic's methodology/naming conventions for saving these audio files, but I assume that it saves based on song name since in this case, that is the only thing similar between my two audio files (artists are different).
I'd imagine changing the naming convention from being simply the song title to something that can more accurately map unique audio tracks wouldn't be too hard (create some kind of mapping where song entries are pointers to song files with a generated key name, e.g. an integer, or whatever is appropriate to avoid this issue.
I wouldn't know because I don't have one, but I'm guessing that a similar issue would probably be prevalent in the iPhone version of the app too...