Replies: 2 comments
-
During the experiment, I found that if some Tauri APIs are called frequently, crashes will occur, such as this: onMounted(() => {
setInterval(async () => {
await appWindow.show();
setTimeout(async () => {
await appWindow.hide();
}, 100)
}, 100)
}); But I'm not sure if my crash is caused by this problem. It's too difficult. |
Beta Was this translation helpful? Give feedback.
0 replies
-
i'm also facing similar problem, when the window is closed too fast sometimes it crashes, I suspect it's related to the IPC |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I developed an instant messaging application and needed to display a message notification window, so I used Tauri's show and hiden API to control the display and hiding of message notifications.
When I use the application, as the usage time of the application increases, the application crashes without any crash log.
But I don’t have any clue to troubleshoot this kind of error. There is no
panic
ofrust
, and there are no other errors. Only theevent viewer
ofwindows
can see some information.I really don’t know how to troubleshoot. I am too desperate
I hope the official can give me some suggestions and directions for troubleshooting.
Beta Was this translation helpful? Give feedback.
All reactions