just post to discord for now

pull/4/head
lza_menace 3 years ago
parent 09eebc719e
commit 490082cc09

@ -116,16 +116,18 @@ def approve(id):
post_webhook(f"Post [{post.id}]({url}) approved :white_check_mark: by `{get_session_user()}` :fieri_parrot:") post_webhook(f"Post [{post.id}]({url}) approved :white_check_mark: by `{get_session_user()}` :fieri_parrot:")
flash("Approved") flash("Approved")
if current_app.config["DEBUG"] is False: if current_app.config["DEBUG"] is False:
_r = None # _r = None
_d = None # _d = None
if not post.to_reddit: # if not post.to_reddit:
_r = make_post(post) # _r = make_post(post)
if not post.to_discord: # if not post.to_discord:
_d = post_discord_webhook(post) # _d = post_discord_webhook(post)
if _r and _d: # if _r and _d:
post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Reddit and Discord.") # post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Reddit and Discord.")
else: # else:
post_webhook(f"Post [{post.id}]({url}) failed :this-is-fine-fire: to post to socials...Reddit: {_r} - Discord: {_d}") # post_webhook(f"Post [{post.id}]({url}) failed :this-is-fine-fire: to post to socials...Reddit: {_r} - Discord: {_d}")
post_discord_webhook(post)
post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Discord.")
return redirect(url_for("mod_queue")) return redirect(url_for("mod_queue"))
else: else:
flash("You can't approve this") flash("You can't approve this")