emots MUST be upper, so we made them upper when we parse the config
This commit is contained in:
parent
471edb28b5
commit
5c0797ae71
|
@ -941,7 +941,7 @@ class Interface:
|
||||||
emot_file = gajim.config.get_per('emoticons', emot, 'path')
|
emot_file = gajim.config.get_per('emoticons', emot, 'path')
|
||||||
if not self.image_is_ok(emot_file):
|
if not self.image_is_ok(emot_file):
|
||||||
continue
|
continue
|
||||||
self.emoticons[emot] = emot_file
|
self.emoticons[emot.upper()] = emot_file
|
||||||
|
|
||||||
# update regular expressions
|
# update regular expressions
|
||||||
self.make_regexps()
|
self.make_regexps()
|
||||||
|
|
Loading…
Reference in New Issue