mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-24 17:11:43 +00:00
customEmoji parser id fix
This commit is contained in:
parent
2f5549b6c4
commit
fda9ef6c63
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ import config from "@/config.js";
|
||||||
export default (order) => { return {
|
export default (order) => { return {
|
||||||
order: order++,
|
order: order++,
|
||||||
match: function(source) {
|
match: function(source) {
|
||||||
return /^<:([\w\d_]+):([\w\d_]+)>/.exec(source)
|
return /^<:([\w\d_-]+):([\w\d_-]+)>/.exec(source)
|
||||||
},
|
},
|
||||||
|
|
||||||
parse: function(capture, parse, state) {
|
parse: function(capture, parse, state) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue