From e25d81a9095d1666538ce38dbabbf773f0400f1b Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Sun, 7 May 2017 22:09:45 +1200 Subject: [PATCH] When playing URIs, add rest at_position 1 --- src/js/services/mopidy/middleware.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/services/mopidy/middleware.js b/src/js/services/mopidy/middleware.js index a0ecdc68..067cdc81 100755 --- a/src/js/services/mopidy/middleware.js +++ b/src/js/services/mopidy/middleware.js @@ -433,7 +433,7 @@ const MopidyMiddleware = (function(){ // this means our UI feels snappier as the first track shows up quickly setTimeout( function(){ - store.dispatch(mopidyActions.enqueueURIs(action.uris, action.from_uri, true, null, 1)) + store.dispatch(mopidyActions.enqueueURIs(action.uris, action.from_uri, null, 1)) }, 100 )