mai2: fix logic in handle_get_user_music_api_request
parent
65686fb615
commit
1b2f5e3709
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue