Browse Source

Fix suggesting emoji with white space

master
Eduard Kuzmenko 3 years ago
parent
commit
26e1acfc84
  1. 5
      src/components/chat/input.ts

5
src/components/chat/input.ts

@ -1303,7 +1303,7 @@ export default class ChatInput { @@ -1303,7 +1303,7 @@ export default class ChatInput {
if(matches) {
const entity = entities[0];
const query = matches[2];
let query = matches[2];
const firstChar = query[0];
if(this.stickersHelper &&
@ -1322,7 +1322,8 @@ export default class ChatInput { @@ -1322,7 +1322,8 @@ export default class ChatInput {
foundHelper = this.commandsHelper;
}
} else if(rootScope.settings.emoji.suggest) { // emoji
if(!value.match(/^\s*:(.+):\s*$/) && !value.match(/:[;!@#$%^&*()-=|]/)) {
query = query.replace(/^\s*/, '');
if(!value.match(/^\s*:(.+):\s*$/) && !value.match(/:[;!@#$%^&*()-=|]/) && query) {
foundHelper = this.emojiHelper;
this.emojiHelper.checkQuery(query, firstChar);
}

Loading…
Cancel
Save