Fixed Github OAuth name error

This commit is contained in:
atagulalan 2019-04-10 17:36:46 +03:00 committed by Adhityaa Chandrasekar
parent b57b6bcc12
commit d077241f09

View File

@ -84,13 +84,11 @@ func githubCallbackHandler(w http.ResponseWriter, r *http.Request) {
email = user["email"].(string)
}
if user["name"] == nil {
fmt.Fprintf(w, "Error: no name returned by Github")
return
name := user["login"].(string)
if user["name"] != nil {
name = user["name"].(string)
}
name := user["name"].(string)
link := "undefined"
if user["html_url"] != nil {
link = user["html_url"].(string)