处理打印信息

This commit is contained in:
suyl
2021-06-28 16:38:43 +08:00
parent 34f4368bc7
commit 2552194dc1
4 changed files with 147 additions and 9 deletions

View File

@@ -476,7 +476,9 @@ func (t *BaseTask) run(taskHandler func()) {
if t.finishHook != nil {
t.finishHook(t)
} else {
SendMessage(t)
if globals.IsMainProductEnv() {
SendMessage(t)
}
}
})
}