From d7ebe540b189252b1bb81b38553fb0019730d973 Mon Sep 17 00:00:00 2001 From: Oj Date: Wed, 17 Feb 2021 18:12:09 +0000 Subject: [PATCH] [Autotag] Tweak related to last commit --- src/autoTag.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/autoTag.js b/src/autoTag.js index 8c40c6c..42c3e6c 100644 --- a/src/autoTag.js +++ b/src/autoTag.js @@ -1,6 +1,6 @@ const basicIncludes = (bundleCode, code, display = (code[0].toUpperCase() + code.substring(1))) => { // if (bundleCode.includes(code)) return display; - if (bundleCode.includes(code)) return display.toLowerCase(); // We make the actual tag all lowercase now due to bug in GM v7.0.0 + if (bundleCode.includes(code)) return display.toLowerCase(); // We make the actual tag all lowercase for now due to bug in GM v7.0.0 }; export default (bundleCode) => { // Scans final bundle JS to try and auto-detect things, then adding tags