mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 04:54:18 +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:
commit
176d4780b5
@ -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_SUPER_SEEDING[] = "super_seeding";
|
||||||
static const char KEY_TORRENT_FORCE_START[] = "force_start";
|
static const char KEY_TORRENT_FORCE_START[] = "force_start";
|
||||||
static const char KEY_TORRENT_SAVE_PATH[] = "save_path";
|
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
|
// Peer keys
|
||||||
static const char KEY_PEER_IP[] = "ip";
|
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_SUPER_SEEDING] = torrent->superSeeding();
|
||||||
ret[KEY_TORRENT_FORCE_START] = torrent->isForced();
|
ret[KEY_TORRENT_FORCE_START] = torrent->isForced();
|
||||||
ret[KEY_TORRENT_SAVE_PATH] = Utils::Fs::toNativePath(torrent->savePath());
|
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;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user