mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-12 05:44:06 +00:00
fix postcode lookup with legacy tokenizer
This commit is contained in:
@@ -193,7 +193,7 @@ class LegacyQueryAnalyzer(AbstractQueryAnalyzer):
|
|||||||
lookup_word = row.word_token[1:]
|
lookup_word = row.word_token[1:]
|
||||||
elif rowclass == 'place' and row.type == 'postcode':
|
elif rowclass == 'place' and row.type == 'postcode':
|
||||||
ttype = qmod.TokenType.POSTCODE
|
ttype = qmod.TokenType.POSTCODE
|
||||||
lookup_word = row.word_token[1:]
|
lookup_word = row.word
|
||||||
else:
|
else:
|
||||||
ttype = qmod.TokenType.NEAR_ITEM if row.operator in ('in', 'near')\
|
ttype = qmod.TokenType.NEAR_ITEM if row.operator in ('in', 'near')\
|
||||||
else qmod.TokenType.QUALIFIER
|
else qmod.TokenType.QUALIFIER
|
||||||
|
|||||||
Reference in New Issue
Block a user