about summary refs log tree commit diff stats
path: root/src/pages/background/background.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/background/background.js')
-rw-r--r--src/pages/background/background.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/background/background.js b/src/pages/background/background.js
index 92502dc2..82f65a20 100644
--- a/src/pages/background/background.js
+++ b/src/pages/background/background.js
@@ -484,9 +484,9 @@ function redirectReddit(url, initiator, type) {
     }
   } else if (url.host === "redd.it") {
     if (redditInstance.includes("teddit")) {
-      // As of 2021-04-22, redirects for teddit on redd.it links don't work:
-      // they take you to the home page.
-      return null;
+      // As of 2021-04-22, redirects for teddit redd.it links don't work out of
+      // the box.  Prefixing the path with "/comments" seems to help.
+      return `${redditInstance}/comments${url.pathname}${url.search}`;
     }
   }
   return `${redditInstance}${url.pathname}${url.search}`;