From 143d82d2421083bf375b02628e9e68948252e1b6 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 20 Jan 2021 03:14:45 -0300 Subject: [PATCH] normalized, not normalized_name --- 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 a73087e99..d3ef45e50 100644 --- a/lbry/wallet/server/db/elastic_search.py +++ b/lbry/wallet/server/db/elastic_search.py @@ -219,7 +219,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': 'normalized_name', + 'name': 'normalized', 'txid': 'tx_id', 'claim_hash': '_id', }