From 91ce9c41c6f77c43e455fc14e62b17419e121e56 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Thu, 29 Oct 2020 10:23:47 -0700 Subject: [PATCH] use direct link --- suchwow/discord.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suchwow/discord.py b/suchwow/discord.py index cf1288e..8146e74 100644 --- a/suchwow/discord.py +++ b/suchwow/discord.py @@ -12,7 +12,7 @@ insults = ["fart sacks", "dick lips", "shit stains", "chodes", "dipshits", "dick def post_discord_webhook(post): wallet = wownero.Wallet() post_wow_address = wallet.get_address(account=post.account_index) - content = f"{choice(intro)} {choice(insults)}, new SuchWow post is up! Tip WOW to `{post_wow_address}` to show support! [#{post.id} by {post.submitter}]({url_for('post.uploaded_file', filename=post.image_name)})" + content = f"{choice(intro)} {choice(insults)}, new SuchWow post #{post.id} by {post.submitter} is up! Tip WOW to `{post_wow_address}` to show support! {url_for('post.uploaded_file', filename=post.image_name)}" msg = {"content": content} discord_webhook_url = config.DISCORD_URL r = requests.post(discord_webhook_url, data=msg)