mai2: fix logic in handle_get_user_music_api_request
This commit is contained in:
@ -668,7 +668,7 @@ class Mai2Base:
|
||||
num_user_songs = len(songs)
|
||||
|
||||
for x in range(next_index, upper_lim):
|
||||
if num_user_songs >= x:
|
||||
if num_user_songs <= x:
|
||||
break
|
||||
|
||||
tmp = songs[x]._asdict()
|
||||
|
Reference in New Issue
Block a user