Skip to content

Commit

Permalink
fix: send only PoS data updated, not GRPC errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brusherru committed Apr 12, 2023
1 parent b5dd7a5 commit 2c73819
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions desktop/SmesherManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,10 @@ class SmesherManager extends AbstractManager {
error: any,
status: Partial<PostSetupStatus>
) => {
if (error) {
logger.error('handlePostDataCreationStatusStream', error);
return;
}
this.mainWindow.webContents.send(
ipcConsts.SMESHER_POST_DATA_CREATION_PROGRESS,
{ error, status }
Expand Down

0 comments on commit 2c73819

Please sign in to comment.