This commit is contained in:
1-6
2023-07-25 17:40:35 +08:00
parent 767103adec
commit d00fa0599e
+6 -1
View File
@@ -303,7 +303,12 @@ func AddNodePlugin(path, name string) error {
}
s := value.(common.Sender)
if s.GetPluginID() == uuid {
p.Process.Kill()
func() {
defer func() {
recover()
}()
p.Process.Kill()
}()
}
return true
})