Skip to content

Commit

Permalink
Add search for user #11
Browse files Browse the repository at this point in the history
  • Loading branch information
Scobiform committed Apr 20, 2024
1 parent cea5d54 commit bf70c2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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['indexable'] == True]
results = [result for result in results if result['discoverable'] == True]


return jsonify(results)
Expand Down
2 changes: 1 addition & 1 deletion static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ nav p {
background: none !important
}

.spinnerContainer {
#spinnerContainer {
position: absolute;
top: 50%;
left: 50%;
Expand Down

0 comments on commit bf70c2d

Please sign in to comment.