From 2c4f46bf3d9ff68181525f0014c950b4710dd666 Mon Sep 17 00:00:00 2001 From: DazedAnon Date: Thu, 23 Jan 2025 14:45:34 -0600 Subject: [PATCH] Fix terms registry --- js/plugins/SceneGlossary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/plugins/SceneGlossary.js b/js/plugins/SceneGlossary.js index a464b79..12543f7 100644 --- a/js/plugins/SceneGlossary.js +++ b/js/plugins/SceneGlossary.js @@ -1422,7 +1422,7 @@ this.getAllHiddenGlossaryList().forEach( function (item) { if (!this.hasItem(item) && this.isAutoGlossaryWord(item)) { - if (likeFlag && !text.contains(item.name)) { + if (likeFlag && !text.toLowerCase().contains(item.name.toLowerCase())) { return; } if (!likeFlag && text !== item.name) {