Browse Source

Merge pull request #3382 from ngosang/webui_trackmenu

[Web UI] Torrent download from hash. Closes #1173
adaptive-webui-19844
sledgehammer999 9 years ago
parent
commit
e6946042ae
  1. 4
      src/webui/webapplication.cpp

4
src/webui/webapplication.cpp

@ -313,7 +313,9 @@ void WebApplication::action_command_download() @@ -313,7 +313,9 @@ void WebApplication::action_command_download()
qDebug("Converting bc link to magnet link");
url = Utils::Misc::bcLinkToMagnet(url);
}
if ((url.size() == 40 && !url.contains(QRegExp("[^0-9A-Fa-f]")))
|| (url.size() == 32 && !url.contains(QRegExp("[^2-7A-Za-z]"))))
url = "magnet:?xt=urn:btih:" + url;
BitTorrent::Session::instance()->addTorrent(url);
}
}

Loading…
Cancel
Save