5f0b8fdb71
Add remaining patches from the archived repository.
14 lines
443 B
Diff
14 lines
443 B
Diff
--- src/qml/irc/ChatView.qml
|
|
+++ src/qml/irc/ChatView.qml
|
|
@@ -280,6 +280,10 @@ Page {
|
|
}
|
|
|
|
function lookupEmote(word) {
|
|
+ if (_textEmotesMap == null) {
|
|
+ console.log("FIXME: emotes haven't initialized");
|
|
+ return;
|
|
+ }
|
|
var emoteId = _textEmotesMap[word];
|
|
if (emoteId != null) {
|
|
return emoteId;
|
|
|