removed comma
This commit is contained in:
parent
de4200c150
commit
09cf1dcea8
|
@ -48,7 +48,7 @@ func TaskNotifyUsers(b *echotron.API) {
|
||||||
for _, user := range users {
|
for _, user := range users {
|
||||||
if time.Since(user.LastNotification) > 2*time.Minute {
|
if time.Since(user.LastNotification) > 2*time.Minute {
|
||||||
user.LastNotification = time.Now()
|
user.LastNotification = time.Now()
|
||||||
text := fmt.Sprintf("*[%s](tg://user?id=%d)*, напоминаю, что тебе необходимо пройти капчу\\!", EscapeText(echotron.MarkdownV2, user.FirstName), user.UserId)
|
text := fmt.Sprintf("*[%s](tg://user?id=%d)* напоминаю, что тебе необходимо пройти капчу\\!", EscapeText(echotron.MarkdownV2, user.FirstName), user.UserId)
|
||||||
store.ReplaceItem(ctx, *user, false)
|
store.ReplaceItem(ctx, *user, false)
|
||||||
chat, err := chatStore.GetOne(ctx, tongo.E("chat_id", user.ChatId))
|
chat, err := chatStore.GetOne(ctx, tongo.E("chat_id", user.ChatId))
|
||||||
topic := 0
|
topic := 0
|
||||||
|
|
Loading…
Reference in New Issue