You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The twofishes prefix index doesn't seem to be correctly built causing the autocomplete to not work untill 6 characters.
r => bestWoeTypes.contains(r.woeTypeOrThrow) never matches because r.woeTypeOrThrow is an enum while bestWoeTypes is a list of integers (enum ordinals)
The twofishes prefix index doesn't seem to be correctly built causing the autocomplete to not work untill 6 characters.
r => bestWoeTypes.contains(r.woeTypeOrThrow)
never matches becauser.woeTypeOrThrow
is an enum whilebestWoeTypes
is a list of integers (enum ordinals)fsqio/src/jvm/io/fsq/twofishes/indexer/output/PrefixIndexer.scala
Line 122 in f5a5699
A fix would be to remove the
map(_.getValue)
mapping and keep the enum type.fsqio/src/jvm/io/fsq/twofishes/indexer/output/PrefixIndexer.scala
Line 103 in f5a5699
The text was updated successfully, but these errors were encountered: