customEmoji parser id fix

This commit is contained in:
brecert 2019-11-13 10:49:43 -05:00
parent 2f5549b6c4
commit fda9ef6c63

View file

@ -4,7 +4,7 @@ import config from "@/config.js";
export default (order) => { return {
order: order++,
match: function(source) {
return /^<:([\w\d_]+):([\w\d_]+)>/.exec(source)
return /^<:([\w\d_-]+):([\w\d_-]+)>/.exec(source)
},
parse: function(capture, parse, state) {