We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3250d8 commit 0ce5a91Copy full SHA for 0ce5a91
src/main/ipc/uds.ts
@@ -720,10 +720,7 @@ export function globalStop(emit = false) {
720
value.socket.close()
721
})
722
timerMap.clear()
723
- for (const t of exTransportList) {
724
- removeTransport(t)
725
- }
726
- exTransportList.splice(0, exTransportList.length)
+
727
//testMap
728
testMap.forEach((value) => {
729
value.close()
@@ -772,6 +769,11 @@ export function globalStop(emit = false) {
772
769
773
770
ortiMap.clear()
774
771
+ for (const t of exTransportList) {
+ removeTransport(t)
+ }
775
+ exTransportList.splice(0, exTransportList.length)
776
777
if (emit) {
778
BrowserWindow.getAllWindows().forEach((win) => {
779
win.webContents.send('ipc-global-stop')
0 commit comments