mirror of https://github.com/rclone/rclone.git
oauthutil: fix panic from use of nil context
This commit is contained in:
parent
db6009126d
commit
edfa1b3a69
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue