Merge pull request #3015 from h3poteto/fix/unknown-type

Fix unknown type in main
This commit is contained in:
AkiraFukushima 2021-12-30 10:52:58 +09:00 committed by GitHub
commit 8d69f899ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ ipcMain.on('start-all-user-streamings', (event: IpcMainEvent, accounts: Array<Lo
}
}
)
} catch (err) {
} catch (err: any) {
log.error(err)
const streamingError = new StreamingError(err.message, account.domain)
if (!event.sender.isDestroyed()) {