From 1098f0d2a3521cc4d5ee3d5dcf4d1fbd44faf273 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 20 Jan 2021 02:53:45 -0300 Subject: [PATCH] use normalized name instead --- lbry/wallet/server/db/elastic_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/server/db/elastic_search.py b/lbry/wallet/server/db/elastic_search.py index e999a888e..98b52c772 100644 --- a/lbry/wallet/server/db/elastic_search.py +++ b/lbry/wallet/server/db/elastic_search.py @@ -215,7 +215,7 @@ TEXT_FIELDS = ['author', 'canonical_url', 'channel_id', 'claim_id', 'claim_name' 'signature_digest', 'stream_type', 'title', 'tx_id', 'fee_currency', 'reposted_claim_id', 'tags'] RANGE_FIELDS = ['height', 'fee_amount', 'duration', 'reposted'] REPLACEMENTS = { - 'name': 'claim_name', + 'name': 'normalized_name', 'txid': 'tx_id', 'claim_hash': '_id', }