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 0bc9aab commit 1a6088fCopy full SHA for 1a6088f
library.properties
@@ -1,5 +1,5 @@
1
name=FastBot2
2
-version=1.2.3
+version=1.2.4
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/types/ID.h
@@ -8,6 +8,7 @@ class ID {
8
public:
9
ID() {}
10
ID(const Text& t) : _len(t.toStr(_str, 22)) {}
11
+ ID(const String& s) : ID(Text(s)) {}
12
ID(const long long& v) : _len(su::int64ToStr(v, _str)) {}
13
ID(const char* str) {
14
strncpy(_str, str, 22);
0 commit comments