pattonma commited on
Commit
8927fdb
1 Parent(s): 9ec925a

url loading testing

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def rename(orig_author: str):
20
 
21
  @cl.on_message
22
  async def main(message: cl.Message):
23
- print(message.content)
24
  if message.content.startswith("http://") or message.content.startswith("https://"):
25
  message_type = "url"
26
  else:
 
20
 
21
  @cl.on_message
22
  async def main(message: cl.Message):
23
+ cl.Message(message.content).send()
24
  if message.content.startswith("http://") or message.content.startswith("https://"):
25
  message_type = "url"
26
  else: