mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 09:41:44 +08:00
jottacloud: error strings should not be capitalized
This commit is contained in:
parent
b2388f1294
commit
e3d44612c1
|
@ -834,12 +834,12 @@ func getOAuthClient(ctx context.Context, name string, m configmap.Mapper) (oAuth
|
||||||
if ok {
|
if ok {
|
||||||
ver, err = strconv.Atoi(version)
|
ver, err = strconv.Atoi(version)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, errors.New("Failed to parse config version")
|
return nil, nil, errors.New("failed to parse config version")
|
||||||
}
|
}
|
||||||
ok = (ver == configVersion) || (ver == legacyConfigVersion)
|
ok = (ver == configVersion) || (ver == legacyConfigVersion)
|
||||||
}
|
}
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, nil, errors.New("Outdated config - please reconfigure this backend")
|
return nil, nil, errors.New("outdated config - please reconfigure this backend")
|
||||||
}
|
}
|
||||||
|
|
||||||
baseClient := fshttp.NewClient(ctx)
|
baseClient := fshttp.NewClient(ctx)
|
||||||
|
@ -885,7 +885,7 @@ func getOAuthClient(ctx context.Context, name string, m configmap.Mapper) (oAuth
|
||||||
// Create OAuth Client
|
// Create OAuth Client
|
||||||
oAuthClient, ts, err = oauthutil.NewClientWithBaseClient(ctx, name, m, oauthConfig, baseClient)
|
oAuthClient, ts, err = oauthutil.NewClientWithBaseClient(ctx, name, m, oauthConfig, baseClient)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, fmt.Errorf("Failed to configure Jottacloud oauth client: %w", err)
|
return nil, nil, fmt.Errorf("failed to configure Jottacloud oauth client: %w", err)
|
||||||
}
|
}
|
||||||
return oAuthClient, ts, nil
|
return oAuthClient, ts, nil
|
||||||
}
|
}
|
||||||
|
@ -1172,7 +1172,7 @@ func parseListRStream(ctx context.Context, r io.Reader, filesystem *Fs, callback
|
||||||
|
|
||||||
if expected.Folders != actual.Folders ||
|
if expected.Folders != actual.Folders ||
|
||||||
expected.Files != actual.Files {
|
expected.Files != actual.Files {
|
||||||
return fmt.Errorf("Invalid result from listStream: expected[%#v] != actual[%#v]", expected, actual)
|
return fmt.Errorf("invalid result from listStream: expected[%#v] != actual[%#v]", expected, actual)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user