This commit is contained in:
shoopea 2019-06-09 00:01:32 +08:00
parent 097e6df61a
commit b0f416ecb8

2
msg.go
View File

@ -281,7 +281,7 @@ func zipMessages() ([]byte, error) {
m, err := getMsg(id)
logOnError(err, "zipMessages : getMsg")
if err == nil {
msgs = append(msgs, *m)
msgs = append(*msgs, *m)
}
}
bkp.Messages = *msgs