Skip to content

Commit

Permalink
bump meta version and fix error handler (#1259)
Browse files Browse the repository at this point in the history
  • Loading branch information
baduts authored Apr 16, 2022
1 parent ca4fef3 commit f5ec0d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app/app/containers/IpcContainer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class IpcContainer extends React.Component {

ipcRenderer.on(IpcEvents.LOCAL_FILES, (event, data) => actions.scanLocalFoldersSuccess(data));
ipcRenderer.on(IpcEvents.LOCAL_FILES_PROGRESS, (event, { scanProgress, scanTotal }) => actions.scanLocalFoldersProgress(scanProgress, scanTotal));
ipcRenderer.on(IpcEvents.LOCAL_FILES_ERROR, (event, err) => actions.scanLocalFoldersFailed(err));
ipcRenderer.on(IpcEvents.LOCAL_FILES_ERROR, (event, err) => actions.scanLocalFoldersFailure(err));
ipcRenderer.on(IpcEvents.PLAY_STARTUP_TRACK, (event, meta) => {
this.props.actions.playTrack([], meta);
this.props.history.push('/library');
Expand Down
2 changes: 1 addition & 1 deletion packages/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"inversify": "^5.0.1",
"jimp": "^0.16.1",
"lodash": "^4.17.15",
"music-metadata": "^5.1.1",
"music-metadata": "^7.12.3",
"node-fetch": "^2.6.0",
"reflect-metadata": "^0.1.13",
"rotating-file-stream": "^2.0.2",
Expand Down

0 comments on commit f5ec0d4

Please sign in to comment.