From ca9ecdfd02c55694fb6304099786383bafb60fe7 Mon Sep 17 00:00:00 2001 From: tyler Date: Fri, 9 Feb 2024 11:11:18 -0500 Subject: [PATCH] Changed back to stdlib cookiejar --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 5337ab1..1b11ae4 100644 --- a/client.go +++ b/client.go @@ -5,11 +5,11 @@ import ( "fmt" "io" "net/http" + "net/http/cookiejar" "net/url" "strings" "sync" - cookiejar "github.com/juju/persistent-cookiejar" "github.com/robertkrimen/otto" )