Skip to content

Commit

Permalink
Add search for user #11 do not filter at all
Browse files Browse the repository at this point in the history
  • Loading branch information
Scobiform committed Apr 20, 2024
1 parent bf70c2d commit e622a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ async def search():
# Filter results for same instance as user
#results = [result for result in results if re.search(r"//([^/@]+)", result['url']).group(1) == instance]
# Filter results for indexable accounts
results = [result for result in results if result['discoverable'] == True]
#results = [result for result in results if result['discoverable'] == True]


return jsonify(results)
Expand Down

0 comments on commit e622a4d

Please sign in to comment.