1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-18 20:42:53 +02:00

Compare commits

..

No commits in common. "293683fbdc7d6f77fddf13b650ea464d21813e91" and "a58a1b347a54d311c6230bdf458e210ef8bb6bb3" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,6 @@
namespace TweetDuck { namespace TweetDuck {
internal static class Version { internal static class Version {
public const string Tag = "1.26"; public const string Tag = "1.25.4";
} }
} }

View File

@ -1,7 +1,7 @@
import { $TD } from "../api/bridge.js"; import { $TD } from "../api/bridge.js";
export default function() { export default function() {
if (location.pathname === "/" && !("TD" in window)) { if (!("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."); $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.");
} }
} }