Fix issue with alternate case versions of emoticons not converting
properly.
This commit is contained in:
parent
c07375c979
commit
7aa7790a5e
@ -195,7 +195,7 @@ public class ScrollingText {
|
||||
//System.out.println("Word is '"+word+"'");
|
||||
|
||||
for (Emoticon e : sigIRC.emoticons) {
|
||||
if (e.getEmoteName().equalsIgnoreCase(word)) {
|
||||
if (e.getEmoteName().equals(word)) {
|
||||
basemsg = TextUtils.replaceFirst(basemsg, e.getEmoteName(), e.getSpaceFiller());
|
||||
GenerateEmoticon(marker+1, basemsg, e);
|
||||
space = basemsg.indexOf(" ", marker+1);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user