Skip to content

Commit

Permalink
Removed console log, corrected item count
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalopitz committed Nov 22, 2016
1 parent d4926c2 commit 5e43988
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion src/ui/actions/BrowserListActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ export default {
title: item.title,
parent: item,
serviceClient: client,
items: items,
items: _.without(items, undefined),
};

Dispatcher.dispatch({
Expand Down
5 changes: 0 additions & 5 deletions src/ui/components/VolumeControls.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,6 @@ class VolumeControls extends React.Component {
}

let volume = Math.floor(_.sum(_.map(this.state.players, (p) => Number(p.volume))) / keys.length);

console.trace({
volume
});

return volume;
}

Expand Down

0 comments on commit 5e43988

Please sign in to comment.