We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a8c6ae commit 7ee6bd4Copy full SHA for 7ee6bd4
1 file changed
bin/test-crawl
@@ -83,6 +83,9 @@ def strip_url(url):
83
fragment_url = re.search("^(.+)#[a-z_.-]+$", url)
84
if fragment_url:
85
url = fragment_url.group(1)
86
+ next_url = re.search(r"^(.+)\?next=.+$", url)
87
+ if next_url:
88
+ url = next_url.group(1)
89
return url
90
91
def extract_html_urls(content):
0 commit comments