lunarflu HF Staff commited on
Commit
070e38e
·
verified ·
1 Parent(s): cbe51b9

working; test no embed / previews for links

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -153,7 +153,7 @@ def send_daily_pings():
153
  if daily_pings:
154
  print("sending daily pings...")
155
  # combine into one message
156
- combined_message = '\n'.join(f"{ping['author']} in #{ping['channel']} said: {ping['content']} (link: {ping['url']})" for ping in daily_pings)
157
  #await post_to_slack(None, combined_message, SLACK_CHANNEL_ID_TEST, None, None, None)
158
 
159
 
 
153
  if daily_pings:
154
  print("sending daily pings...")
155
  # combine into one message
156
+ combined_message = '\n'.join(f"{ping['author']} in #{ping['channel']} said: {ping['content']} (link: <{ping['url']}>)" for ping in daily_pings)
157
  #await post_to_slack(None, combined_message, SLACK_CHANNEL_ID_TEST, None, None, None)
158
 
159