Skip to content

Commit 01f41a7

Browse files
Fix wget parse error
1 parent 89e85aa commit 01f41a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

warcraft.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ func (warc *Warcraft) Download(ctx context.Context, u *url.URL) (string, error)
6969
name := filepath.Join(warc.BasePath, strings.TrimSuffix(helper.FileName(u.String(), ""), ".html"))
7070
args := []string{
7171
"--no-config", "--no-directories", "--no-verbose", "--no-netrc", "--no-check-certificate",
72-
"--no-hsts", "--no-parent", "--timestamping", "--adjust-extension", "--convert-links",
73-
"--span-hosts", "--delete-after", "--tries=3", "--compression=auto", "-e robots=off",
74-
"--page-requisites", "--user-agent=" + warc.userAgent,
72+
"--no-hsts", "--no-parent", "--adjust-extension", "--convert-links",
73+
"--span-hosts", "--tries=3", "-e robots=off", "--page-requisites",
74+
"--user-agent=" + warc.userAgent,
7575
"--warc-tempdir=" + warc.BasePath,
7676
"--warc-file=" + name,
7777
u.String(),

0 commit comments

Comments
 (0)