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
This issue is regarding the getVideosFromPlaylistHandler() which takes the playlistId from the request params and returns the respective playlist.
getVideosFromPlaylistHandler()
playlistId
However, the current logic of find() gives back the playlist that does not match the playlistId given in the params. Here is the screenshot.
find()
This can be fixed by checking for strict equality between playlistId and item._id
item._id
Kindly confirm.
The text was updated successfully, but these errors were encountered:
You need to change !== to ===.
Sorry, something went wrong.
Yes I did that. I thought of mentioning this issue here but i guess I'll create a PR for this.
No branches or pull requests
This issue is regarding the
getVideosFromPlaylistHandler()
which takes theplaylistId
from the request params and returns the respective playlist.However, the current logic of
find()
gives back the playlist that does not match theplaylistId
given in the params. Here is the screenshot.This can be fixed by checking for strict equality between
playlistId
anditem._id
Kindly confirm.
The text was updated successfully, but these errors were encountered: