fix: allow aborting upload tasks
This maintains the same behaviour as the Download task. Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
@ -43,6 +43,16 @@
|
||||
|
||||
namespace Net {
|
||||
|
||||
bool Upload::abort()
|
||||
{
|
||||
if (m_reply) {
|
||||
m_reply->abort();
|
||||
} else {
|
||||
m_state = State::AbortedByUser;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void Upload::downloadProgress(qint64 bytesReceived, qint64 bytesTotal) {
|
||||
setProgress(bytesReceived, bytesTotal);
|
||||
}
|
||||
|
Reference in New Issue
Block a user