Skip to content

Commit

Permalink
fix: Don't do album image cover lookup when clearing queue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcass77 committed May 14, 2016
1 parent 240bac8 commit d3c68e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ v2.3.0 (UNRELEASED)
a small divider rendered above it. (Fixes: `#196 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/196>`_).
- Replaced JavaScript confirmation prompt on 'Streams' pane with jQuery equivalent.
(Fixes: `#191 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/191>`_).
- Clearing the queue should no longer trigger an album cover image lookup.
(Fixes: `#201 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/201>`_).

v2.2.0 (2016-03-01)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion mopidy_musicbox_webclient/static/js/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function resetSong () {
data.track.name = ''
data.track.artists = ''
data.track.length = 0
data.track.uri = ' '
data.track.uri = ''
setSongInfo(data)
}

Expand Down

0 comments on commit d3c68e1

Please sign in to comment.