From 9d7c7c51caf56e624d4d276e711ff7f5a6af4f20 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Sat, 5 Sep 2015 21:00:08 -0400 Subject: [PATCH] webui: add save_path to /query/torrents Signed-off-by: Casey Bodley --- src/webui/btjson.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webui/btjson.cpp b/src/webui/btjson.cpp index 5e4c33dc2..24236b4de 100644 --- a/src/webui/btjson.cpp +++ b/src/webui/btjson.cpp @@ -104,6 +104,7 @@ static const char KEY_TORRENT_FIRST_LAST_PIECE_PRIO[] = "f_l_piece_prio"; 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"; // Tracker keys static const char KEY_TRACKER_URL[] = "url"; @@ -610,6 +611,7 @@ QVariantMap toMap(const QTorrentHandle& h) ret[KEY_TORRENT_LABEL] = TorrentPersistentData::instance()->getLabel(h.hash()); ret[KEY_TORRENT_SUPER_SEEDING] = status.super_seeding; ret[KEY_TORRENT_FORCE_START] = h.is_forced(status); + ret[KEY_TORRENT_SAVE_PATH] = fsutils::toNativePath(h.root_path()); return ret; }