Last active
March 4, 2020 20:18
-
-
Save Mm2PL/dac8048bcf7edae8103b3a493de64a8d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src/providers/twitch/TwitchChannel.cpp | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/src/providers/twitch/TwitchChannel.cpp b/src/providers/twitch/TwitchChannel.cpp | |
index d305f0c4..999164ed 100644 | |
--- a/src/providers/twitch/TwitchChannel.cpp | |
+++ b/src/providers/twitch/TwitchChannel.cpp | |
@@ -31,7 +31,7 @@ | |
namespace chatterino { | |
namespace { | |
constexpr int TITLE_REFRESH_PERIOD = 10; | |
- constexpr char MAGIC_MESSAGE_SUFFIX[] = u8" \U000E0000"; | |
+ constexpr char MAGIC_MESSAGE_SUFFIX[] = u8" ."; | |
// parseRecentMessages takes a json object and returns a vector of | |
// Communi IrcMessages | |
-- | |
2.20.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if command -v curl | |
then | |
curl -L https://gist.githubusercontent.com/Mm2PL/dac8048bcf7edae8103b3a493de64a8d/raw/spam_with_dots.patch > custom_patches/spam-with-dots.patch | |
curl -L https://gist.githubusercontent.com/Mm2PL/dac8048bcf7edae8103b3a493de64a8d/raw/spam_with_dots.patch_updater.sh > custom_patches/spam-with-dots.patch_updater.sh | |
elif command -v wget | |
then | |
wget -O - https://gist.githubusercontent.com/Mm2PL/dac8048bcf7edae8103b3a493de64a8d/raw/spam_with_dots.patch > custom_patches/spam-with-dots.patch | |
wget -O - https://gist.githubusercontent.com/Mm2PL/dac8048bcf7edae8103b3a493de64a8d/raw/spam_with_dots.patch_updater.sh > custom_patches/spam-with-dots.patch_updater.sh | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment