1

Update how suru verb rules are detected

This commit is contained in:
toasted-nutbread 2022-08-14 15:35:20 -04:00
parent 2168659243
commit 77d5d2debd

View File

@ -17,7 +17,7 @@ func jmdictBuildRules(term *dbTerm) {
default: default:
if strings.HasPrefix(tag, "v5") { if strings.HasPrefix(tag, "v5") {
term.addRules("v5") term.addRules("v5")
} else if strings.HasPrefix(tag, "vs") { } else if strings.HasPrefix(tag, "vs-") {
term.addRules("vs") term.addRules("vs")
} }
} }