Skip to content

Commit

Permalink
Release v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kingosticks committed Apr 23, 2015
2 parents 9cebc6e + 6ec9bd7 commit bdf4635
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ Project resources
Changelog
=========

v0.2.2 (2015-04-24)
-------------------

- Fix infinite loop when adding some stations, again (my bad).

v0.2.1 (2015-04-24)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion mopidy_tunein/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from mopidy import config, ext

__version__ = '0.2.1'
__version__ = '0.2.2'


class Extension(ext.Extension):
Expand Down
2 changes: 1 addition & 1 deletion mopidy_tunein/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def translate_uri(self, uri):
except exceptions.ScannerError as se:
logger.debug('Mopidy scan failed: %s.' % se)
new_uris = self.backend.tunein.parse_stream_url(uri)
if uri in new_uris and not stream_uris:
if new_uris == [uri]:
logger.debug(
'Last attempt, play stream anyway: %s.' % uri)
return uri
Expand Down

0 comments on commit bdf4635

Please sign in to comment.