ba0f3 / telebot.nim

Async Telegram Bot API Client implement in @Nim-Lang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

answerInlineQuery don't support cyrillic characters in title and content

altfoxie opened this issue · comments

issue in title.
code:

proc inlineHandler(b: Telebot, u: InlineQuery) {.async.} =
  var res: InlineQueryResultArticle
  res.kind = "article"
  res.title = "тест"
  res.id = "1"
  res.inputMessageContent = InputTextMessageContent("тест").some
  var results: seq[InlineQueryResultArticle]
  results.add(res)
  discard waitFor b.answerInlineQuery(u.id, results)