From 21f3c790bf492c435787bc79cf235c0a27d0f81f Mon Sep 17 00:00:00 2001 From: tobtoht Date: Sun, 4 Oct 2020 14:43:30 +0200 Subject: [PATCH] Reddit: fix extra / --- fapi/fapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fapi/fapi.py b/fapi/fapi.py index 280d689..4b5f016 100644 --- a/fapi/fapi.py +++ b/fapi/fapi.py @@ -270,7 +270,7 @@ class FeatherApi: blob = [{ 'title': z['data']['title'], 'author': z['data']['author'], - 'url': "https://old.reddit.com/" + z['data']['permalink'], + 'url': "https://old.reddit.com" + z['data']['permalink'], 'comments': z['data']['num_comments'] } for z in blob['data']['children']]