We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e91669 commit 73ab7adCopy full SHA for 73ab7ad
library.properties
@@ -1,5 +1,5 @@
1
name=FastBot2
2
-version=1.0.8
+version=1.0.9
3
author=AlexGyver <alex@alexgyver.ru>
4
maintainer=AlexGyver <alex@alexgyver.ru>
5
sentence=Fast and universal Arduino/ESP8266/ESP32 library for Telegram bot
src/core/core.h
@@ -191,7 +191,7 @@ class Core : public Http {
191
// ============================== TICK ==============================
192
// тикер, вызывать в loop. Вернёт true, если был обработан Update
193
bool tick() {
194
- if (!_state) return 0;
+ if (!_state || !_token.length()) return 0;
195
196
// OTA
197
#ifndef FB_NO_FILE
0 commit comments