mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Guard against tracks_len being zero
to prevent 'index out of bounds: the len is 0 but the index is 0' https://github.com/librespot-org/librespot/issues/226#issuecomment-971642037
This commit is contained in:
parent
85d6049ee7
commit
3016d6fbdb
1 changed files with 8 additions and 0 deletions
|
@ -1140,6 +1140,14 @@ impl SpircTask {
|
|||
fn get_track_id_to_play_from_playlist(&self, index: u32) -> Option<(SpotifyId, u32)> {
|
||||
let tracks_len = self.state.get_track().len();
|
||||
|
||||
// Guard against tracks_len being zero to prevent
|
||||
// 'index out of bounds: the len is 0 but the index is 0'
|
||||
// https://github.com/librespot-org/librespot/issues/226#issuecomment-971642037
|
||||
if tracks_len == 0 {
|
||||
warn!("No playable track found in state: {:?}", self.state);
|
||||
return None;
|
||||
}
|
||||
|
||||
let mut new_playlist_index = index as usize;
|
||||
|
||||
if new_playlist_index >= tracks_len {
|
||||
|
|
Loading…
Reference in a new issue