diff --git a/builds/appchan-x.js b/builds/appchan-x.js index 6ec3a6d43..230580183 100644 --- a/builds/appchan-x.js +++ b/builds/appchan-x.js @@ -9888,7 +9888,6 @@ if (!category.hasOwnProperty(name)) { continue; } - name = icon[0]; css.push("a.useremail[href*='" + name + "']:last-of-type::" + position + ",\na.useremail[href*='" + (name.toLowerCase()) + "']:last-of-type::" + position + ",\na.useremail[href*='" + (name.toUpperCase()) + "']:last-of-type::" + position + " {\n content: url('data:image/png;base64," + icon + "');\n}\n"); } } diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index c301bcf85..69d3ac5ae 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -9909,7 +9909,6 @@ if (!category.hasOwnProperty(name)) { continue; } - name = icon[0]; css.push("a.useremail[href*='" + name + "']:last-of-type::" + position + ",\na.useremail[href*='" + (name.toLowerCase()) + "']:last-of-type::" + position + ",\na.useremail[href*='" + (name.toUpperCase()) + "']:last-of-type::" + position + " {\n content: url('data:image/png;base64," + icon + "');\n}\n"); } } diff --git a/builds/crx.crx b/builds/crx.crx index 2bc05adcc..d15c7e9c7 100644 Binary files a/builds/crx.crx and b/builds/crx.crx differ diff --git a/builds/crx/script.js b/builds/crx/script.js index 642f93052..079b60d8f 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -9892,7 +9892,6 @@ if (!category.hasOwnProperty(name)) { continue; } - name = icon[0]; css.push("a.useremail[href*='" + name + "']:last-of-type::" + position + ",\na.useremail[href*='" + (name.toLowerCase()) + "']:last-of-type::" + position + ",\na.useremail[href*='" + (name.toUpperCase()) + "']:last-of-type::" + position + " {\n content: url('data:image/png;base64," + icon + "');\n}\n"); } } diff --git a/src/Theming/Emoji.coffee b/src/Theming/Emoji.coffee index fd2b175f2..dc0ee1878 100644 --- a/src/Theming/Emoji.coffee +++ b/src/Theming/Emoji.coffee @@ -17,7 +17,6 @@ a.useremail[href]:last-of-type::#{position} { if (_conf['Emoji'] isnt "disable ponies" and key is "pony") or (_conf['Emoji'] isnt "only ponies" and key is "not") for name, icon of category continue unless category.hasOwnProperty name - name = icon[0] css.push """ a.useremail[href*='#{name}']:last-of-type::#{position}, a.useremail[href*='#{name.toLowerCase()}']:last-of-type::#{position},