Skip to content

Commit

Permalink
Update remove-videos-from-playlist.ts (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolson authored Nov 27, 2023
1 parent 21079a7 commit dbd549d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operations/ui/remove-videos-from-playlist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function removeVideosFromPlaylist(videosToDelete: PlaylistVideo[]
const htmlElements = Object.values(searchMap)
for (const element of htmlElements) {
// eslint-disable-next-line no-underscore-dangle
const videoId = element.__data.data.setVideoId
const videoId = element.data.setVideoId
removeVideoWithYtAction(videoId)
}
return
Expand Down

0 comments on commit dbd549d

Please sign in to comment.