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
get_queue in core.py often fails with an Attribute error when a track from soundcloud is on the playlist.
Replacing
track.creator, track.title, track.album,
with
getattr(track, "creator", ""), getattr(track, "title", ""), getattr(track, "album", ""),
on lines 436:438
fixes the problem, but this is a bit messy.
I'm happy to put in a PR for this, but would like suggestions as what people think is the best to fix it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
get_queue in core.py often fails with an Attribute error when a track from soundcloud is on the playlist.
Replacing
track.creator,
track.title,
track.album,
with
getattr(track, "creator", ""),
getattr(track, "title", ""),
getattr(track, "album", ""),
on lines 436:438
fixes the problem, but this is a bit messy.
I'm happy to put in a PR for this, but would like suggestions as what people think is the best to fix it.
The text was updated successfully, but these errors were encountered: