1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

Merge pull request #4746 from buinsky/WebUI_torrents_request

WebAPI: Add "Added on" and "Completion on" fields to query/torrents …
This commit is contained in:
sledgehammer999 2016-02-04 15:32:14 -06:00
commit 176d4780b5

View File

@ -106,6 +106,8 @@ static const char KEY_TORRENT_LABEL[] = "label";
static const char KEY_TORRENT_SUPER_SEEDING[] = "super_seeding";
static const char KEY_TORRENT_FORCE_START[] = "force_start";
static const char KEY_TORRENT_SAVE_PATH[] = "save_path";
static const char KEY_TORRENT_ADDED_ON[] = "added_on";
static const char KEY_TORRENT_COMPLETION_ON[] = "completion_on";
// Peer keys
static const char KEY_PEER_IP[] = "ip";
@ -707,6 +709,8 @@ QVariantMap toMap(BitTorrent::TorrentHandle *const torrent)
ret[KEY_TORRENT_SUPER_SEEDING] = torrent->superSeeding();
ret[KEY_TORRENT_FORCE_START] = torrent->isForced();
ret[KEY_TORRENT_SAVE_PATH] = Utils::Fs::toNativePath(torrent->savePath());
ret[KEY_TORRENT_ADDED_ON] = torrent->addedTime();
ret[KEY_TORRENT_COMPLETION_ON] = torrent->completedTime();
return ret;
}