Patch a bug in ngsfilter reading and sample matching

This commit is contained in:
2022-09-28 14:29:19 +02:00
parent ebefa28cc0
commit fe5d8e3340
2 changed files with 6 additions and 5 deletions

View File

@@ -54,8 +54,8 @@ func _parseMainNGSFilterTags(text string) obingslibrary.TagPair {
}
return obingslibrary.TagPair{
Forward: tags[0],
Reverse: tags[1],
Forward: strings.ToLower(tags[0]),
Reverse: strings.ToLower(tags[1]),
}
}