Skip to content

Commit 1bd4c3d

Browse files
committed
frontend/frame: dont handle error messages from worker.
This will stop closing the connection in the app after beeing in the background for too long.
1 parent c45f20b commit 1bd4c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/Frame.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class VirtualNetworkInterface {
109109
const msg = e.data as Message;
110110
switch (msg.type) {
111111
case MessageType.Error:
112-
this.handleErrorMessage(msg);
112+
// this.handleErrorMessage(msg);
113113
break;
114114

115115
default:

0 commit comments

Comments
 (0)