Merge branch 'main' of ssh://github.com/OliveTin/OliveTin

This commit is contained in:
jamesread 2022-11-13 12:54:52 +04:00
commit 384ef9787b
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ func parseToken(cookieValue string) (*jwt.Token, error) {
return jwt.Parse(cookieValue, func(token *jwt.Token) (interface{}, error) {
// Don't forget to validate the alg is what you expect:
if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok {
return nil, fmt.Errorf("Unexpected signing method: %v", token.Header["alg"])
return nil, fmt.Errorf("unexpected signing method: %v", token.Header["alg"])
}
// hmacSampleSecret is a []byte containing your secret, e.g. []byte("my_secret_key")

View File

@ -99,7 +99,7 @@ func StartUpdateChecker(currentVersion string, currentCommit string, cfg *config
s.AddFunc("@every 100h", func() {
actualCheckForUpdate(payload)
})
go actualCheckForUpdate(payload) // On startup
go s.Start()