-
-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
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
Episodes shows #177
Episodes shows #177
Conversation
@@ -14,7 +14,7 @@ | |||
from homeassistant.components.cast.helpers import ChromeCastZeroconf | |||
from homeassistant.components.spotify.media_player import KNOWN_SPOTIFY_DEVICES | |||
|
|||
__VERSION__ = "3.5.0" | |||
__VERSION__ = "3.5.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you really need this? Component verison should be in manifest.json
.
if uri.find("track") > 0: | ||
if uri.find("show") > 0: | ||
show_episodes_info = client.show_episodes(uri) | ||
if show_episodes_info and len(show_episodes_info["items"]) > 0: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if show_episodes_info and len(show_episodes_info["items"]) > 0: | |
if show_episodes_info and show_episodes_info["items"]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Saw your review now! Thanks, I'm nackered now after a whole day fixing. Can you open a new PR?
accidently released with #178 |
No description provided.