From 3f4516c71681a0738a9d08e48776a36254093ed7 Mon Sep 17 00:00:00 2001 From: nitram509 Date: Mon, 4 Nov 2024 19:47:44 +0100 Subject: [PATCH] fix letter case --- http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.go b/http.go index 3ec4416..a5a7aaa 100644 --- a/http.go +++ b/http.go @@ -42,7 +42,7 @@ func doHttpRequestAndReadResponse_justCookie_FormData(args *GlobalOptions, httpM if isModel30x(model) { req.Header.Set("Cookie", "SID="+token) } else if isModel316(model) { - req.Header.Set("Cookie", "gambitCookie="+token) + req.Header.Set("Cookie", "gambitcookie="+token) } else { panic("model not supported") }