Skip to content

Commit

Permalink
Fixing scrolling down a sonos playlist
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalopitz committed Jun 7, 2020
1 parent 65eb1c0 commit 6a44dfd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sonos-controller-unofficial",
"description": "Unoffical sonos controller for linux.",
"version": "0.2.0-beta6",
"version": "0.2.0-beta7",
"author": "Pascal Opitz <[email protected]>",
"main": "main.js",
"dependencies": {
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sonos-controller-unofficial",
"version": "0.2.0-beta6",
"version": "0.2.0-beta7",
"description": "Unoffical sonos controller for linux",
"main": "app/main.js",
"homepage": "http://pascalopitz.github.io/unoffical-sonos-controller-for-linux/",
Expand Down Expand Up @@ -44,6 +44,10 @@
{
"name": "pjetherton",
"url": "https://github.com/pjetherton"
},
{
"name": "stan-qaz",
"url": "https://github.com/stan-qaz"
}
],
"build": {
Expand Down
3 changes: 3 additions & 0 deletions src/ui/reduxActions/BrowserListActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,9 @@ const selectSonosPlaylist = async (item) => {

const state = _.cloneDeep(item);
state.items = result.items || [];
state.total = result.total;
state.updateID = result.updateID;
state.id = id;
return state;
};

Expand Down

0 comments on commit 6a44dfd

Please sign in to comment.