From 08953cc22ed905e3f4f052e15bd6dcedb637c403 Mon Sep 17 00:00:00 2001 From: Owlcept <67299472+Owlcept@users.noreply.github.com> Date: Sat, 11 Jun 2022 12:59:58 -0500 Subject: [PATCH] Update subreddit.py permalink comes with an extra "/" so took out that, should link correct now --- reddit/subreddit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reddit/subreddit.py b/reddit/subreddit.py index f3e4bca..0ab958b 100644 --- a/reddit/subreddit.py +++ b/reddit/subreddit.py @@ -60,7 +60,7 @@ def get_subreddit_threads(): print_substep(f"Video will be: {submission.title} :thumbsup:") console.log("Getting video comments...") try: - content["thread_url"] = f"https://reddit.com/{submission.permalink}" + content["thread_url"] = f"https://reddit.com{submission.permalink}" content["thread_title"] = submission.title content["thread_post"] = submission.selftext content["comments"] = []