Skip to content

Commit f995310

Browse files
committed
Rename max length set to 31
1 parent e7e9476 commit f995310

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ringcentral-chatbot-python",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "RingCentral Chatbot Framework for Python",
55
"repository": {
66
"type": "git",

ringcentral_bot_framework/core/hidden_cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def hiddenCmd(
2121
return False
2222
elif not m2 is None:
2323
name = m2.group(1)
24-
name = name[0:10].strip()
24+
name = name[0:31].strip()
2525
bot.rename(name)
2626
bot.sendMessage(
2727
groupId,

0 commit comments

Comments
 (0)