mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-04-25 16:23:38 -05:00
GameStats: Fix length error in last commit
This commit is contained in:
parent
cc36857182
commit
3a55fdd733
|
|
@ -17,7 +17,7 @@ func (g *GameStatsSession) getpd(command common.GameSpyCommand) {
|
|||
"lid": strconv.Itoa(g.LoginID),
|
||||
"pid": command.OtherValues["pid"],
|
||||
"mod": strconv.Itoa(int(time.Now().Unix())),
|
||||
"length": strconv.Itoa(len(data)),
|
||||
"length": strconv.Itoa(len(data) + 1),
|
||||
"data": `\` + data + `\`,
|
||||
},
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user