1
mirror of https://github.com/rclone/rclone synced 2024-10-07 15:17:14 +02:00

jottacloud: fix token refresh - fixes #2992

This commit is contained in:
Sebastian Bünger 2019-02-21 18:47:20 +01:00 committed by buengese
parent 8f4ea77c07
commit 972e27a861

View File

@ -381,6 +381,9 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
rootIsDir := strings.HasSuffix(root, "/")
root = parsePath(root)
// add jottacloud to the long list of sites that don't follow the oauth spec correctly
oauth2.RegisterBrokenAuthHeaderProvider("https://www.jottacloud.com/")
// the oauth client for the api servers needs
// a filter to fix the grant_type issues (see above)
baseClient := fshttp.NewClient(fs.Config)