Compare commits
	
		
			3 Commits
		
	
	
		
			v1.0.18
			...
			19ddd10164
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 19ddd10164 | ||
| 97aae89ce9 | |||
| 1af505196a | 
| @@ -1,3 +1,10 @@ | |||||||
|  | ## [1.0.19](http://gitea.gitea.svc.cluster.local:3000/djpbessems/ContainerImage.SpamasaurusRex/compare/v1.0.18...v1.0.19) (2024-03-11) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ### Bug Fixes | ||||||
|  |  | ||||||
|  | * Add error handling to session store ([1af5051](http://gitea.gitea.svc.cluster.local:3000/djpbessems/ContainerImage.SpamasaurusRex/commit/1af505196ad217b91169cdac771de2ec0a35482f)) | ||||||
|  |  | ||||||
| ## [1.0.18](http://gitea.gitea.svc.cluster.local:3000/djpbessems/ContainerImage.SpamasaurusRex/compare/v1.0.17...v1.0.18) (2024-03-10) | ## [1.0.18](http://gitea.gitea.svc.cluster.local:3000/djpbessems/ContainerImage.SpamasaurusRex/compare/v1.0.17...v1.0.18) (2024-03-10) | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
| @@ -52,7 +52,12 @@ func callbackHandler(w http.ResponseWriter, r *http.Request) { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	// Store the token in the session | 	// Store the token in the session | ||||||
| 	session, _ := sessionStore.Get(r, "spamasaurusRex") | 	session, err := sessionStore.Get(r, "spamasaurusRex") | ||||||
|  | 	if err != nil { | ||||||
|  | 		log.Println(spew.Sdump(err)) | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	session.Values["token"] = token | 	session.Values["token"] = token | ||||||
| 	session.Save(r, w) | 	session.Save(r, w) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user