We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Amplitude.getSongsInPlaylist() results in an JS Error
Uncaught TypeError: Cannot read property 'rock' of undefined at Object.T [as getSongsInPlaylist] (amplitude.min.js:1)
This issue can be fixed in Line 5113 Wrong: for (var i = 0; i < _config2.default.playlist[playlist].length; i++) {
Right: for (var i = 0; i < _config2.default.playlists[playlist].length; i++) { --> the "s" is missing
Array of songs in a playlist
The text was updated successfully, but these errors were encountered:
Thanks @isobolewski ! I made the change and it will be merged into the next release!
Sorry, something went wrong.
No branches or pull requests
Environment
Issue description
Amplitude.getSongsInPlaylist() results in an JS Error
Uncaught TypeError: Cannot read property 'rock' of undefined
at Object.T [as getSongsInPlaylist] (amplitude.min.js:1)
This issue can be fixed in Line 5113
Wrong:
for (var i = 0; i < _config2.default.playlist[playlist].length; i++) {
Right:
for (var i = 0; i < _config2.default.playlists[playlist].length; i++) {
--> the "s" is missing
Steps to reproduce the issue
What is expected?
Array of songs in a playlist
Link to where issue can be reproduced
Additional details / screenshots
The text was updated successfully, but these errors were encountered: