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) {