mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 18:04:32 +00:00
Increase the download size limit to 100 MiB
This commit is contained in:
parent
e499317695
commit
25102b9c5d
@ -1809,7 +1809,7 @@ bool Session::addTorrent(const QString &source, const AddTorrentParams ¶ms)
|
|||||||
if (Net::DownloadManager::hasSupportedScheme(source)) {
|
if (Net::DownloadManager::hasSupportedScheme(source)) {
|
||||||
LogMsg(tr("Downloading '%1', please wait...", "e.g: Downloading 'xxx.torrent', please wait...").arg(source));
|
LogMsg(tr("Downloading '%1', please wait...", "e.g: Downloading 'xxx.torrent', please wait...").arg(source));
|
||||||
// Launch downloader
|
// Launch downloader
|
||||||
Net::DownloadManager::instance()->download(Net::DownloadRequest(source).limit(10485760 /* 10MB */)
|
Net::DownloadManager::instance()->download(Net::DownloadRequest(source).limit(MAX_TORRENT_SIZE)
|
||||||
, this, &Session::handleDownloadFinished);
|
, this, &Session::handleDownloadFinished);
|
||||||
m_downloadedTorrents[source] = params;
|
m_downloadedTorrents[source] = params;
|
||||||
return true;
|
return true;
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
|
#include "base/global.h"
|
||||||
#include "base/utils/fs.h"
|
#include "base/utils/fs.h"
|
||||||
#include "infohash.h"
|
#include "infohash.h"
|
||||||
#include "trackerentry.h"
|
#include "trackerentry.h"
|
||||||
@ -116,10 +117,9 @@ TorrentInfo TorrentInfo::loadFromFile(const QString &path, QString *error) noexc
|
|||||||
return TorrentInfo();
|
return TorrentInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
const qint64 fileSizeLimit = 100 * 1024 * 1024; // 100 MB
|
if (file.size() > MAX_TORRENT_SIZE) {
|
||||||
if (file.size() > fileSizeLimit) {
|
|
||||||
if (error)
|
if (error)
|
||||||
*error = tr("File size exceeds max limit %1").arg(fileSizeLimit);
|
*error = tr("File size exceeds max limit %1").arg(MAX_TORRENT_SIZE);
|
||||||
return TorrentInfo();
|
return TorrentInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
const char C_TORRENT_FILE_EXTENSION[] = ".torrent";
|
const char C_TORRENT_FILE_EXTENSION[] = ".torrent";
|
||||||
|
const int MAX_TORRENT_SIZE = 100 * 1024 * 1024; // 100 MiB
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
constexpr typename std::add_const<T>::type &asConst(T &t) noexcept { return t; }
|
constexpr typename std::add_const<T>::type &asConst(T &t) noexcept { return t; }
|
||||||
|
@ -238,7 +238,7 @@ void AddNewTorrentDialog::show(const QString &source, const BitTorrent::AddTorre
|
|||||||
if (Net::DownloadManager::hasSupportedScheme(source)) {
|
if (Net::DownloadManager::hasSupportedScheme(source)) {
|
||||||
// Launch downloader
|
// Launch downloader
|
||||||
Net::DownloadManager::instance()->download(
|
Net::DownloadManager::instance()->download(
|
||||||
Net::DownloadRequest(source).limit(10485760 /* 10MB */)
|
Net::DownloadRequest(source).limit(MAX_TORRENT_SIZE)
|
||||||
, dlg, &AddNewTorrentDialog::handleDownloadFinished);
|
, dlg, &AddNewTorrentDialog::handleDownloadFinished);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user