This commit is contained in:
Zyronon
2025-10-19 02:50:49 +08:00
parent 7ec823e872
commit cb7f5611ce

View File

@@ -303,8 +303,8 @@ function wrong(word: Word) {
if (settingStore.ignoreSimpleWord) {
if (store.simpleWords.includes(temp)) return
}
if (!allWrongWords.has(word.word.toLowerCase())) {
allWrongWords.add(word.word.toLowerCase())
if (!allWrongWords.has(temp)) {
allWrongWords.add(temp)
statStore.wrong++
}