From 9c3cc67f27a7c8f3bcc6a76257bbb1dda27a6c7b Mon Sep 17 00:00:00 2001 From: Vanessasaurus <814322+vsoch@users.noreply.github.com> Date: Wed, 3 Nov 2021 18:46:13 -0600 Subject: [PATCH] adding unfurl_links to message request --- find-updates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find-updates.py b/find-updates.py index 88bcb5c..29e277f 100755 --- a/find-updates.py +++ b/find-updates.py @@ -108,7 +108,7 @@ def help(return_code=0): for name in new: choice = random.choice(icons) message = 'New Job! %s: %s' % (choice, name) - data = {"text": message} + data = {"text": message, "unfurl_links": True} print(data) response = requests.post(webhook, headers=headers, data=json.dumps(data)) if response.status_code not in [200, 201]: