Skip to content

Commit

Permalink
Fix excessive quoting in second-run snipper
Browse files Browse the repository at this point in the history
  • Loading branch information
PrivateGER authored Sep 3, 2022
1 parent 7c84eff commit 95c3ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DownloadManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func DownloadJobHandler(safeDownloadList *SafeDownloadList) {

fmt.Printf(`Finished downloading in %d second(s)!
You can download another set of images using the below JS snippet or exit patreon-dl:
(async()=>{eval(await(await fetch(\"http://localhost:9849/gadget\")).text());})();`,
(async()=>{eval(await(await fetch("http://localhost:9849/gadget")).text());})();`,
int(endedAt.Sub(startedAt).Seconds()),
)

Expand Down

0 comments on commit 95c3ac3

Please sign in to comment.