From 0580bd86deb4a0a3f64f12061e9bf1105f0ed85b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 23 Sep 2019 12:36:54 +0100 Subject: [PATCH] Remove argument --- content.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/content.py b/content.py index e7b59502..0f61b0b8 100644 --- a/content.py +++ b/content.py @@ -111,7 +111,7 @@ def loadEmojiDict(emojiDataFilename: str,emojiDict: {}) -> None: emojiName=emojiName.split('..')[0] emojiDict[emojiName.lower()]=emojiUnicode -def addEmoji(baseDir: str,wordStr: str,httpPrefix: str,domain: str,replaceEmoji: {},postTags: {},emojiDict: {},inMessageContent: bool) -> bool: +def addEmoji(baseDir: str,wordStr: str,httpPrefix: str,domain: str,replaceEmoji: {},postTags: {},emojiDict: {}) -> bool: """Detects Emoji and adds them to the replacements dict Also updates the tags list to be added to the post """ @@ -144,9 +144,6 @@ def addEmoji(baseDir: str,wordStr: str,httpPrefix: str,domain: str,replaceEmoji: 'name': ':'+emoji+':', 'type': 'Emoji' } - if not inMessageContent: - # when altering emoji in display name - replaceEmoji[wordStr]=''+emoji+'' return True def addMention(wordStr: str,httpPrefix: str,following: str,replaceMentions: {},recipients: [],tags: {}) -> bool: