update per feedback

This commit is contained in:
techknowlogick 2019-04-22 19:50:31 -04:00 committed by GitHub
parent b7fc433b31
commit 18b0959bbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,11 +172,11 @@ func provideRefresher(config config.Config) *oauth2.Refresher {
Endpoint: "https://bitbucket.org/site/oauth2/access_token",
Source: oauth2.ContextTokenSource(),
}
case config.Gitea.Server != "":
case config.Gitea.ClientID != "":
return &oauth2.Refresher{
ClientID: config.Gitea.ClientID,
ClientSecret: config.Gitea.ClientSecret,
Endpoint: config.Server.Addr + "/login/oauth/access_token",
Endpoint: config.Gitea.Server + "/login/oauth/access_token",
Source: oauth2.ContextTokenSource(),
}
}