Skip to content

Do I _have to_ send a message before reading for user input? #9

Description

bot.command('round').keyboard(...).answer(function (ctx) {
  ...
});

doesn't work.

Is it possible to have this enabled? I don't necessarily have to send a message before every a command. Specifically, when redirecting with ctx.go(), it isn't always necessary in my use case.


Already tried

bot.command('round').keyboard(...)
.invoke(function (ctx) {
  return Promise.resolve(ctx);
}).
.answer(function (ctx) {
  ...
});

doesn't seem to work either.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions