Skip to content

Commit

Permalink
fix: [domain search] fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Feb 19, 2025
1 parent bd436b1 commit 67e915a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion var/www/blueprints/crawler_splash.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def send_to_spider():
def domain_discovery():
user_org = current_user.get_org()
user_id = current_user.get_user_id()
domain = request.form.get('domain')
domain = request.args.get('domain')
data = {'depth': 1, 'har': True, 'screenshot': True, 'url': f'http://{domain}', 'proxy': 'force_tor'}
res = crawlers.api_add_crawler_task(data, user_org, user_id=user_id)

Expand Down

0 comments on commit 67e915a

Please sign in to comment.