summaryrefslogtreecommitdiff
path: root/api/auth/auth.go
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-05-12 14:32:50 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-05-12 14:52:25 -0700
commitfca8f5d8addeebba7d55d4b69159745c84f27a91 (patch)
tree960bf01540ba1b5a8d7935666a8c37a531f597c4 /api/auth/auth.go
parentcd324e1d48505410f0b11f26d6c415415ebf098e (diff)
downloadhatecomputers.club-fca8f5d8addeebba7d55d4b69159745c84f27a91.tar.gz
hatecomputers.club-fca8f5d8addeebba7d55d4b69159745c84f27a91.zip
fix segfault
Diffstat (limited to 'api/auth/auth.go')
-rw-r--r--api/auth/auth.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/api/auth/auth.go b/api/auth/auth.go
index 04d6c12..c54aad6 100644
--- a/api/auth/auth.go
+++ b/api/auth/auth.go
@@ -170,7 +170,6 @@ func VerifySessionContinuation(context *types.RequestContext, req *http.Request,
func GoLoginContinuation(context *types.RequestContext, req *http.Request, resp http.ResponseWriter) types.ContinuationChain {
return func(success types.Continuation, failure types.Continuation) types.ContinuationChain {
- log.Println("GoLoginContinuation")
http.SetCookie(resp, &http.Cookie{
Name: "redirect",
Value: req.URL.Path,