mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 06:19:00 +08:00
librclone: allow empty string or null input instead of empty json object
This commit is contained in:
parent
be1a668e95
commit
fd82876086
|
@ -88,9 +88,11 @@ func RPC(method string, input string) (output string, status int) {
|
||||||
}()
|
}()
|
||||||
|
|
||||||
// create a buffer to capture the output
|
// create a buffer to capture the output
|
||||||
err := json.NewDecoder(strings.NewReader(input)).Decode(&in)
|
if input != "" {
|
||||||
if err != nil {
|
err := json.NewDecoder(strings.NewReader(input)).Decode(&in)
|
||||||
return writeError(method, in, fmt.Errorf("failed to read input JSON: %w", err), http.StatusBadRequest)
|
if err != nil {
|
||||||
|
return writeError(method, in, fmt.Errorf("failed to read input JSON: %w", err), http.StatusBadRequest)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find the call
|
// Find the call
|
||||||
|
|
Loading…
Reference in New Issue
Block a user