diff --git a/CHANGELOG.md b/CHANGELOG.md
index cb22f6b22..8021d7f58 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,7 @@
## Unversioned
+- Minor: Remove TwitchEmotes.com attribution and the open/copy options when right-clicking a Twitch Emote. (#2214, #3136)
- Bugfix: Moderation mode and active filters are now preserved when opening a split as a popup. (#3113, #3130)
- Bugfix: Fixed a bug that caused all badge highlights to use the same color. (#3132, #3134)
diff --git a/src/providers/twitch/TwitchEmotes.cpp b/src/providers/twitch/TwitchEmotes.cpp
index 38593a03a..9a84bcabf 100644
--- a/src/providers/twitch/TwitchEmotes.cpp
+++ b/src/providers/twitch/TwitchEmotes.cpp
@@ -57,7 +57,7 @@ EmotePtr TwitchEmotes::getOrCreateEmote(const EmoteId &id,
Image::fromUrl(getEmoteLink(id, "3.0"), 0.25),
},
Tooltip{name.toHtmlEscaped() + "
Twitch Emote"},
- Url{QString("https://twitchemotes.com/emotes/%1").arg(id.string)}});
+ });
}
return shared;
diff --git a/src/widgets/helper/ChannelView.cpp b/src/widgets/helper/ChannelView.cpp
index c28108449..064a25cd9 100644
--- a/src/widgets/helper/ChannelView.cpp
+++ b/src/widgets/helper/ChannelView.cpp
@@ -108,11 +108,7 @@ namespace {
});
};
- if (creatorFlags.has(MessageElementFlag::TwitchEmote))
- {
- addPageLink("TwitchEmotes");
- }
- else if (creatorFlags.has(MessageElementFlag::BttvEmote))
+ if (creatorFlags.has(MessageElementFlag::BttvEmote))
{
addPageLink("BTTV");
}
diff --git a/src/widgets/settingspages/AboutPage.cpp b/src/widgets/settingspages/AboutPage.cpp
index 44033ac6c..ea0c7bd43 100644
--- a/src/widgets/settingspages/AboutPage.cpp
+++ b/src/widgets/settingspages/AboutPage.cpp
@@ -161,7 +161,6 @@ AboutPage::AboutPage()
l.emplace("Google emojis provided by Google")->setOpenExternalLinks(true);
l.emplace("Emoji datasource provided by Cal Henderson"
"(show license)")->setOpenExternalLinks(true);
- l.emplace("Twitch emote data provided by twitchemotes.com through the Chatterino API")->setOpenExternalLinks(true);
// clang-format on
}