From 67d812128893b943187a5bab3791d4773cc67efa Mon Sep 17 00:00:00 2001 From: lza_menace Date: Thu, 6 May 2021 22:06:16 -0700 Subject: [PATCH] add reddit posting again --- suchwow/routes/post.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/suchwow/routes/post.py b/suchwow/routes/post.py index bf949dd..dc4156a 100644 --- a/suchwow/routes/post.py +++ b/suchwow/routes/post.py @@ -116,9 +116,16 @@ def approve(id): post_webhook(f"Post [{post.id}]({url}) approved :white_check_mark: by `{get_session_user()}` :fieri_parrot:") flash("Approved") if current_app.config["DEBUG"] is False: + _r = None + _d = None + if not post.to_reddit: + _r = make_post(post) if not post.to_discord: _d = post_discord_webhook(post) - post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Discord.") + if _r and _d: + post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Reddit and Discord.") + else: + post_webhook(f"Post [{post.id}]({url}) failed :this-is-fine-fire: to post to socials...Reddit: {_r} - Discord: {_d}") return redirect(url_for("mod_queue")) else: flash("You can't approve this")