Skip to content

Commit

Permalink
fix letter case
Browse files Browse the repository at this point in the history
  • Loading branch information
nitram509 committed Nov 4, 2024
1 parent 25e1c49 commit 3f4516c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit 3f4516c

Please sign in to comment.