hdkv
/
i2_bot
Archived
1
Fork 0

Add error response on wrong profile parsing

master
Vladimir Hodakov 2018-03-31 23:07:05 +04:00
parent 3ffeec4e54
commit d96f1e9004
1 changed files with 8 additions and 4 deletions

View File

@ -4,13 +4,14 @@
package users
import (
"github.com/go-telegram-bot-api/telegram-bot-api"
"regexp"
"source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping"
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
"strconv"
"strings"
"time"
"github.com/go-telegram-bot-api/telegram-bot-api"
"source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping"
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
)
// Internal functions
@ -174,8 +175,11 @@ func (u *Users) ParseProfile(update *tgbotapi.Update, playerRaw *dbmapping.Playe
pkAttack := ""
if strings.Contains(pokememeString, "🔟") {
pkAttack = pkPointsArray[0]
} else {
} else if strings.Contains(pokememeString, "⃣") {
pkAttack = pkPointsArray[1]
} else {
// Something went wrong
return c.Talkers.BotError(update)
}
pkName := strings.Split(pokememeString, "+")[0]
pkName = strings.Replace(pkName, " ⭐", "", 1)