diff options
author | llnulldisk <48621230+llnulldisk@users.noreply.github.com> | 2024-04-17 23:46:52 +0200 |
---|---|---|
committer | llnulldisk <48621230+llnulldisk@users.noreply.github.com> | 2024-04-17 23:46:52 +0200 |
commit | d99e61c68a27d625d2d94c2569d99a1aaacaf0b0 (patch) | |
tree | 10e2b4bff0dbf38bd96f3bcb21df18d7e45f3079 /include | |
parent | 90cb57b61ee3ed9db0164b351ac9a98c83645426 (diff) |
Fix various api objects
Diffstat (limited to 'include')
-rw-r--r-- | include/tgbot/types/ChatShared.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tgbot/types/ChatShared.h b/include/tgbot/types/ChatShared.h index 14b1566..ffb41b3 100644 --- a/include/tgbot/types/ChatShared.h +++ b/include/tgbot/types/ChatShared.h @@ -29,7 +29,7 @@ public: * This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. * But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier. */ - std::int64_t userId; + std::int64_t chatId; }; } |