mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Fixed bug when uploading several files and only the last one was considered.
This commit is contained in:
parent
db459b2400
commit
c9293dd2d1
@ -319,7 +319,7 @@ bool RequestParser::parseFormData(const QByteArray& data)
|
|||||||
ufile.type = disposition["content-type"];
|
ufile.type = disposition["content-type"];
|
||||||
ufile.data = data.mid(header_end + EOH.length());
|
ufile.data = data.mid(header_end + EOH.length());
|
||||||
|
|
||||||
m_request.files[disposition["name"]] = ufile;
|
m_request.files.append(ufile);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_request.posts[disposition["name"]] = QString::fromUtf8(data.mid(header_end + EOH.length()));
|
m_request.posts[disposition["name"]] = QString::fromUtf8(data.mid(header_end + EOH.length()));
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
#include <QHostAddress>
|
#include <QHostAddress>
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
typedef QMap<QString, QString> QStringMap;
|
typedef QMap<QString, QString> QStringMap;
|
||||||
|
|
||||||
@ -70,7 +71,7 @@ namespace Http
|
|||||||
QStringMap headers;
|
QStringMap headers;
|
||||||
QStringMap gets;
|
QStringMap gets;
|
||||||
QStringMap posts;
|
QStringMap posts;
|
||||||
QMap<QString, UploadedFile> files;
|
QVector<UploadedFile> files;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ResponseStatus
|
struct ResponseStatus
|
||||||
|
Loading…
Reference in New Issue
Block a user