Skip to content

Commit

Permalink
Fix del player
Browse files Browse the repository at this point in the history
  • Loading branch information
MauroBrandan committed Aug 31, 2021
1 parent 87f5734 commit a3e9931
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/reducers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const reducer = (state, action) => {
return {
...state,
playing:
state.trends.find((item) => item.id === Number(action.payload)) ||
state.originals.find((item) => item.id === Number(action.payload)) ||
state.trends.find((item) => item.id === action.payload) ||
state.originals.find((item) => item.id === action.payload) ||
[],
}

Expand Down

0 comments on commit a3e9931

Please sign in to comment.