fixed wrong player append logic

This commit is contained in:
2022-11-28 13:01:59 +01:00
parent c6ddf14a26
commit d856b32139

View File

@@ -328,7 +328,7 @@ func getPlayerMeta(c *gin.Context) {
}
for _, p := range append(metaStats.BestMates, metaStats.MostMates...) {
if p.Player.Name == "" {
if p.Player.Name != "" {
continue
}