mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 17:10:10 +00:00
invites: fix sending invite to @username discord format
whether something was an email or not was being decided by checking for an "@", so the new format didn't work.
This commit is contained in:
parent
43e36ee6fc
commit
f34ba5df18
@ -192,7 +192,7 @@ func (app *appContext) GenerateInvite(gc *gin.Context) {
|
||||
addressValid := false
|
||||
discord := ""
|
||||
app.debug.Printf("%s: Sending invite message", invite.Code)
|
||||
if discordEnabled && !strings.Contains(req.SendTo, "@") {
|
||||
if discordEnabled && (!strings.Contains(req.SendTo, "@") || strings.HasPrefix(req.SendTo, "@")) {
|
||||
users := app.discord.GetUsers(req.SendTo)
|
||||
if len(users) == 0 {
|
||||
invite.SendTo = fmt.Sprintf("Failed: User not found: \"%s\"", req.SendTo)
|
||||
|
Loading…
Reference in New Issue
Block a user