53ba669ba6
I tried locally and I'm kept logged in. @ewhal check after update that you do have the same hash set in both nyaa and sukebei. If you do, just change the domain name (".pantsu.cat") in the functions getDomainName() to the subdomain. Because I don't see why it wouldn't work otherwise
20 lignes
343 o
Go
20 lignes
343 o
Go
package cookies
|
|
|
|
import (
|
|
"github.com/NyaaPantsu/nyaa/config"
|
|
)
|
|
|
|
func getDomainName() string {
|
|
domain := config.Get().Cookies.DomainName
|
|
if config.Get().Environment == "DEVELOPMENT" {
|
|
domain = ""
|
|
}
|
|
return domain
|
|
}
|
|
|
|
func getMaxAge(rememberMe bool) int {
|
|
if rememberMe {
|
|
return 365 * 24 * 3600
|
|
}
|
|
return config.Get().Cookies.MaxAge
|
|
}
|