FEATURE: qBittorrent can now act as a tracker

This commit is contained in:
Christophe Dumez
2010-10-15 21:55:56 +00:00
parent f6172f8c77
commit aff27558dd
12 changed files with 437 additions and 6 deletions

View File

@@ -68,12 +68,12 @@ QByteArray HttpRequestParser::message() const
QString HttpRequestParser::get(const QString key) const
{
return getMap[key];
return getMap.value(key);
}
QString HttpRequestParser::post(const QString key) const
{
return postMap[key];
return postMap.value(key);
}
QByteArray HttpRequestParser::torrent() const