Merge pull request #1472 from thelounge/xpaw/css-escape
Escape channel names in slugify helper correctly
This commit is contained in:
commit
5821247b3d
@ -1,5 +1,7 @@
|
||||
"use strict";
|
||||
|
||||
const escape = require("css.escape");
|
||||
|
||||
module.exports = function(orig) {
|
||||
return orig.toLowerCase().replace(/[^a-z0-9]/, "-");
|
||||
return escape(orig.toLowerCase());
|
||||
};
|
||||
|
@ -66,6 +66,7 @@
|
||||
"babel-loader": "7.1.2",
|
||||
"babel-preset-env": "1.6.0",
|
||||
"chai": "4.1.1",
|
||||
"css.escape": "1.5.1",
|
||||
"emoji-regex": "6.5.1",
|
||||
"eslint": "4.5.0",
|
||||
"font-awesome": "4.7.0",
|
||||
|
Loading…
Reference in New Issue
Block a user