-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Frage wird automatsich abgebrochen nach xx Sekunden #848
Comments
Please attach a log with level denug |
|
Wenn man das Beispiel aus der Doku verwendet: kommt auch ein Fehler: |
Hi, response always trigger after 20 seconds. |
Beim Senden einer Frage über die unten beschriebene Funktion wird nach ca. 15 bis 20 Sekunden die Frage von selbst mit "Nein" beantwortet, unabhängig von dem Zeitlimit das im Adapter eingestellt ist.
To Reproduce
Expected behavior
Warten bis zum Ablauf der eingestellten Zeit oder dem auswählen einer Antwort
Script
`
sendTo('telegram.0', 'ask', {
text: 'Are you sure?',
reply_markup: {
inline_keyboard: [
// two buttons could be on one line too, but here they are on different
[{ text: 'Yes!', callback_data: '1' }], // first line
[{ text: 'No...', callback_data: '0' }] // second line
]
}
}, msg => {
// Auf die Antwort reagieren
if ( msg.data == 'y' ) {
sendTo("telegram.0", "send", { text: 'Die Antwort war Ja',chatId: 232821635});
} else {
sendTo("telegram.0", "send", { text: 'Die Antwort war Nein',chatId: 232821635});
}
});
`
Versions:
The text was updated successfully, but these errors were encountered: