mirror of
https://github.com/thelounge/thelounge
synced 2025-02-16 21:28:23 +00:00
Merge pull request #1472 from thelounge/xpaw/css-escape
Escape channel names in slugify helper correctly
This commit is contained in:
commit
5821247b3d
2 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue