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 e7e9476 commit f995310Copy full SHA for f995310
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "ringcentral-chatbot-python",
3
- "version": "0.5.0",
+ "version": "0.5.1",
4
"description": "RingCentral Chatbot Framework for Python",
5
"repository": {
6
"type": "git",
ringcentral_bot_framework/core/hidden_cmd.py
@@ -21,7 +21,7 @@ def hiddenCmd(
21
return False
22
elif not m2 is None:
23
name = m2.group(1)
24
- name = name[0:10].strip()
+ name = name[0:31].strip()
25
bot.rename(name)
26
bot.sendMessage(
27
groupId,
0 commit comments