Add error response on wrong profile parsing
This commit is contained in:
parent
3ffeec4e54
commit
d96f1e9004
@ -4,13 +4,14 @@
|
|||||||
package users
|
package users
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/go-telegram-bot-api/telegram-bot-api"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
"source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping"
|
|
||||||
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"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
|
// Internal functions
|
||||||
@ -174,8 +175,11 @@ func (u *Users) ParseProfile(update *tgbotapi.Update, playerRaw *dbmapping.Playe
|
|||||||
pkAttack := ""
|
pkAttack := ""
|
||||||
if strings.Contains(pokememeString, "🔟") {
|
if strings.Contains(pokememeString, "🔟") {
|
||||||
pkAttack = pkPointsArray[0]
|
pkAttack = pkPointsArray[0]
|
||||||
} else {
|
} else if strings.Contains(pokememeString, "⃣") {
|
||||||
pkAttack = pkPointsArray[1]
|
pkAttack = pkPointsArray[1]
|
||||||
|
} else {
|
||||||
|
// Something went wrong
|
||||||
|
return c.Talkers.BotError(update)
|
||||||
}
|
}
|
||||||
pkName := strings.Split(pokememeString, "+")[0]
|
pkName := strings.Split(pokememeString, "+")[0]
|
||||||
pkName = strings.Replace(pkName, " ⭐", "", 1)
|
pkName = strings.Replace(pkName, " ⭐", "", 1)
|
||||||
|
Reference in New Issue
Block a user