mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-18 21:07:44 +03:00
Fix TypeError: Cannot read properties of undefined (reading 'length')
This commit is contained in:
parent
a42aeff88d
commit
d3e142233b
@ -38,7 +38,7 @@ const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
|
||||
|
||||
const getAllSongsAndDispatch = React.useCallback(
|
||||
(action) => {
|
||||
if (ids.length === record.songCount) {
|
||||
if (ids?.length === record.songCount) {
|
||||
return dispatch(action(data, ids))
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user