Skip to content

Commit 1a6088f

Browse files
committed
upd
1 parent 0bc9aab commit 1a6088f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FastBot2
2-
version=1.2.3
2+
version=1.2.4
33
author=AlexGyver <[email protected]>
44
maintainer=AlexGyver <[email protected]>
55
sentence=Fast and universal Arduino/ESP8266/ESP32 library for Telegram bot

src/core/types/ID.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class ID {
88
public:
99
ID() {}
1010
ID(const Text& t) : _len(t.toStr(_str, 22)) {}
11+
ID(const String& s) : ID(Text(s)) {}
1112
ID(const long long& v) : _len(su::int64ToStr(v, _str)) {}
1213
ID(const char* str) {
1314
strncpy(_str, str, 22);

0 commit comments

Comments
 (0)