This commit is contained in:
shoopea 2019-05-03 16:04:49 +08:00
parent dfc8573896
commit 3667ff6ca9

View File

@ -16,8 +16,8 @@ import (
type MsgDirection string
const (
MsgIncoming string = `incoming`
MsgOutgoing string = `outgoing`
Incoming string = `incoming`
Outgoing string = `outgoing`
)
type ChatWarsMessage struct {
@ -180,9 +180,9 @@ func ListenCW(c *tdlib.Client) {
MsgID64: updateMsg.Message.ID,
}
if senderUserID == ownUserID32 {
m.Direction = MsgOutgoing
m.Direction = Outgoing
} else {
m.Direction = MsgIncoming
m.Direction = Incoming
}
b, err := json.Marshal(m)