Your database is obviously corrupt. Entries in alphabetic vs. album view return different resultsnt
Composers that are not shown in the ALPHABETIC view do show up in the ALBUM view. How did you guys managed to do that?
Composers that are not shown in the ALPHABETIC view do show up in the ALBUM view. How did you guys managed to do that?
550 No such user
I see.
So if you look at the Songs Tab for the letter "I" on The Beatles' page, you see a list of song titles, some with composers, and some without.
https://www.allmusic.com/artist/the-beatles-mn0000754032#songs
This is because of the specific way we create what we call a Song and what we call a Performance.
Our "Song" data is pretty convoluted. From our data provider we receive tracks attached to albums. These are each individually listed as the song title, the performer, and the composer(s).
From this info, we create a "Song" entity (which is the text string of the title + the composers) and we also create a "Performance" entity (the now-created Song ID + performer names). So "I Am the Walrus" written by John Lennon and Paul McCartney is a "Song" and "I Am the Walrus" performed by The Beatles is a "Performance."
Along these same lines, "I Am the Walrus" performed by Frank Zappa would be the same "Song," but a different "Performance"
When you're seeing items in that list that don't have a composer, that is because the information we have available to us doesn't indicate that it is the same "Song" (we know it is "I Am the Walrus" performed by The Beatles, but since a budget-line compilation or soundtrack may not have had the composer information, that does not go into our database).
So we don't list the composers for that particular "Performance" of that particular "Song" in that view.