diff options
Diffstat (limited to 'rest')
-rw-r--r-- | rest/rest-proxy-call.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rest/rest-proxy-call.c b/rest/rest-proxy-call.c index ca90a1a..4f59633 100644 --- a/rest/rest-proxy-call.c +++ b/rest/rest-proxy-call.c @@ -938,6 +938,9 @@ rest_proxy_call_continuous (RestProxyCall *call, if (message == NULL) goto error; + /* Must turn off accumulation */ + soup_message_body_set_accumulate (message->response_body, FALSE); + closure = g_slice_new0 (RestProxyCallContinuousClosure); closure->call = g_object_ref (call); closure->callback = callback; |