void-packages/srcpkgs/orion/patches/c61bb86f241df9e17238833c091992c80bb1d298.patch
Jürgen Buchmüller 5f0b8fdb71 orion: update to 1.6.7
Add remaining patches from the archived repository.
2021-01-10 15:47:57 +01:00

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;