We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b112fb commit 649f7e4Copy full SHA for 649f7e4
1 file changed
linebot/app/services/handlers/text_handler.py
@@ -27,7 +27,7 @@ def handle_text_message(event):
27
quick_reply = None
28
if user_input in COMMANDS:
29
response_text = COMMANDS[user_input]
30
- if isinstance(response_text, list): # 處理 /hint 指令的多個提示
+ if isinstance(response_text, list): # 處理 /hint 指令的多個提示
31
response_text = random.choice(response_text)
32
quick_reply = create_quick_reply()
33
return [TextSendMessage(text=response_text, quick_reply=quick_reply)]
0 commit comments