adaptivedemux2/downloadhelper: Don't mark transfer as complete/error if cancelled.

If the state of the download request was reset to UNSENT,
it was cancelled. Don't update the state to COMPLETE or ERRORED
in on_read_ready().

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3314>
This commit is contained in:
Jan Schmidt 2022-10-14 06:19:11 +11:00
parent 46517d5aca
commit d1ae35f08a

View file

@ -353,11 +353,13 @@ finish_transfer:
G_GINT64_FORMAT, status_code, request->uri, G_GINT64_FORMAT, status_code, request->uri,
request->range_start, request->range_end); request->range_start, request->range_end);
if (SOUP_STATUS_IS_SUCCESSFUL (status_code) if (request->state != DOWNLOAD_REQUEST_STATE_UNSENT) {
|| SOUP_STATUS_IS_REDIRECTION (status_code)) if (SOUP_STATUS_IS_SUCCESSFUL (status_code)
request->state = DOWNLOAD_REQUEST_STATE_COMPLETE; || SOUP_STATUS_IS_REDIRECTION (status_code))
else request->state = DOWNLOAD_REQUEST_STATE_COMPLETE;
request->state = DOWNLOAD_REQUEST_STATE_ERROR; else
request->state = DOWNLOAD_REQUEST_STATE_ERROR;
}
} }
request->download_end_time = now; request->download_end_time = now;