Skip to content

Commit

Permalink
Update build_message_web.py
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanRuzavin authored Dec 25, 2024
1 parent 67d8108 commit 6bc5ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_message_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def fetch_current_indexed_click_boards(es : Elasticsearch, index_name):
for eachHit in response['hits']['hits']:
if not 'name' in eachHit['_source']:
continue
if index_name == eachHit['_type']:
if '_doc' == eachHit['_type']:
if 'mikroe.click' in eachHit['_source']['name']:
all_packages.append(eachHit['_source'])

Expand Down

0 comments on commit 6bc5ec8

Please sign in to comment.