Skip to content

Commit

Permalink
WebAPI: allow to attach tags while adding torrents
Browse files Browse the repository at this point in the history
  • Loading branch information
jesec authored and sledgehammer999 committed Dec 26, 2020
1 parent 894446d commit 7c10dba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/webui/api/torrentscontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ void TorrentsController::addAction()
const TriStateBool rootFolder = parseTriStateBool(params()["root_folder"]);
const QString savepath = params()["savepath"].trimmed();
const QString category = params()["category"];
const QSet<QString> tags = List::toSet(params()["tags"].split(',', QString::SkipEmptyParts));
const QString cookie = params()["cookie"];
const QString torrentName = params()["rename"].trimmed();
const int upLimit = params()["upLimit"].toInt();
Expand Down Expand Up @@ -599,6 +600,7 @@ void TorrentsController::addAction()
params.createSubfolder = rootFolder;
params.savePath = savepath;
params.category = category;
params.tags = tags;
params.name = torrentName;
params.uploadLimit = (upLimit > 0) ? upLimit : -1;
params.downloadLimit = (dlLimit > 0) ? dlLimit : -1;
Expand Down

0 comments on commit 7c10dba

Please sign in to comment.