oauthutil: fix panic from use of nil context

This commit is contained in:
Nick Craig-Wood 2017-07-23 11:31:27 +01:00
parent db6009126d
commit edfa1b3a69

View file

@ -188,7 +188,7 @@ var _ oauth2.TokenSource = (*TokenSource)(nil)
// Context returns a context with our HTTP Client baked in for oauth2 // Context returns a context with our HTTP Client baked in for oauth2
func Context() context.Context { func Context() context.Context {
return context.WithValue(nil, oauth2.HTTPClient, fs.Config.Client()) return context.WithValue(context.Background(), oauth2.HTTPClient, fs.Config.Client())
} }
// overrideCredentials sets the ClientID and ClientSecret from the // overrideCredentials sets the ClientID and ClientSecret from the