Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
get_current_emoji_list function had a greedy quantifier in regexp: "data-emoji-name=\"(.*)\"" I.e. for string like `data-emoji-name="parrot" data-action="emoji.remove"` it returns following result: `parrot" data-action="emoji.remove` In case of lazy quantifier ("data-emoji-name=\"(.*?)\"") the result will be correct:`parrot`
- Loading branch information