Revert "return links"

This reverts commit 2d597672be.
This commit is contained in:
Gergő Móricz 2024-09-19 20:07:06 +02:00
parent 2d597672be
commit 506d5c2716
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ class FirecrawlApp:
if response.status_code == 200:
response = response.json()
if response['success'] and 'links' in response:
return response['links']
return response
else:
raise Exception(f'Failed to map URL. Error: {response["error"]}')
else: