diff --git a/SpiffyTitles/plugin.py b/SpiffyTitles/plugin.py index a46ef38..2fd972f 100644 --- a/SpiffyTitles/plugin.py +++ b/SpiffyTitles/plugin.py @@ -1460,19 +1460,19 @@ class SpiffyTitles(callbacks.Plugin): "thread": { "pattern": r"^/r/(?P[^/]+)/comments/(?P[^/]+)" r"(?:/[^/]+/?)?$", - "url": "https://www.reddit.com/r/{subreddit}/comments/{thread}.json", + "url": "https://old.reddit.com/r/{subreddit}/comments/{thread}.json", }, "comment": { "pattern": r"^/r/(?P[^/]+)/comments/(?P[^/]+)/" r"[^/]+/(?P\w+/?)$", "url": ( - "https://www.reddit.com/r/{subreddit}/comments/{thread}/x/" + "https://old.reddit.com/r/{subreddit}/comments/{thread}/x/" "{comment}.json" ), }, "user": { "pattern": r"^/u(?:ser)?/(?P[^/]+)/?$", - "url": "https://www.reddit.com/user/{user}/about.json", + "url": "https://old.reddit.com/user/{user}/about.json", }, } info = urlparse(url)