Add support for exporting .torrent from WebUI

PR #16968.
This commit is contained in:
Tom Piccirello
2022-05-03 21:13:24 -07:00
committed by GitHub
parent 48fa4e116c
commit fb7f7d0c75
9 changed files with 55 additions and 1 deletions

View File

@@ -91,3 +91,8 @@ void APIController::setResult(const QJsonObject &result)
{
m_result = QJsonDocument(result);
}
void APIController::setResult(const QByteArray &result)
{
m_result = result;
}