Merge pull request #3015 from h3poteto/fix/unknown-type
Fix unknown type in main
This commit is contained in:
commit
8d69f899ee
|
@ -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()) {
|
||||
|
|
Loading…
Reference in New Issue