This commit is contained in:
shoopea 2019-05-31 09:05:40 +08:00
parent dc646aad15
commit 2853a572e4

3
job.go
View File

@ -357,6 +357,9 @@ func jobMsgClient(j Job) {
err = json.Unmarshal(j.Payload, &p)
logOnError(err, "jobMsgClient : Unmarshal payload")
log.Printf("jobMsgClient : Msg : %s\n", p.Msg)
log.Printf("jobMsgClient : UserID64 : %d\n", j.UserID64)
if err != nil {
clientSendCWMsg(j.UserID64, p.Msg)
}