diff --git a/resources/Content/tweetdeck/tweetdeck_preview_warning.js b/resources/Content/tweetdeck/tweetdeck_preview_warning.js
index 032eecc2..87be3923 100644
--- a/resources/Content/tweetdeck/tweetdeck_preview_warning.js
+++ b/resources/Content/tweetdeck/tweetdeck_preview_warning.js
@@ -1,7 +1,7 @@
 import { $TD } from "../api/bridge.js";
 
 export default function() {
-	if (!("TD" in window)) {
+	if (location.pathname === "/" && !("TD" in window)) {
 		$TD.alert("warning", "Some TweetDuck features failed to load. This might happen if your Twitter account is enrolled into the TweetDeck Preview, which TweetDuck does not support. Try opting out of the TweetDeck Preview to restore TweetDuck's functionality.");
 	}
 }