Skip to content

Commit

Permalink
Buildout 3.54.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Nov 20, 2020
1 parent 17d4432 commit 88c0292
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
13 changes: 8 additions & 5 deletions mopidy_iris/static/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -121303,12 +121303,15 @@ var MopidyMiddleware = function () {
break;

case 'event:trackPlaybackStarted':
store.dispatch(mopidyActions.currentTrackLoaded(data.tl_track)); // Wait a jiffy before we get the next track
// We don't want to impede snappyness for this luxury request
if (data.tl_track) {
store.dispatch(mopidyActions.currentTrackLoaded(data.tl_track)); // Wait a jiffy before we get the next track
// We don't want to impede snappyness for this luxury request

setTimeout(function () {
store.dispatch(mopidyActions.getNextTrack());
}, 1000);
}

setTimeout(function () {
store.dispatch(mopidyActions.getNextTrack());
}, 1000);
break;

case 'event:volumeChanged':
Expand Down
2 changes: 1 addition & 1 deletion mopidy_iris/static/app.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mopidy_iris/static/app.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions mopidy_iris/static/app.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mopidy_iris/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@

// Release details
// These are automatically injected to built HTML
var build = "1605862197";
var build = "1605864468";
var version = "3.54.2";

// Construct the script tag
Expand Down

0 comments on commit 88c0292

Please sign in to comment.