mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
Fix compilation errors due to recent merge from master
This commit is contained in:
parent
24a73c05b9
commit
4177a37d63
2 changed files with 5 additions and 8 deletions
|
@ -997,9 +997,10 @@ void MainWindow::processNewMagnetLink(const QString& link)
|
||||||
{
|
{
|
||||||
QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
||||||
const bool useTorrentAdditionDialog = settings.value(QString::fromUtf8("Preferences/Downloads/AdditionDialog"), true).toBool();
|
const bool useTorrentAdditionDialog = settings.value(QString::fromUtf8("Preferences/Downloads/AdditionDialog"), true).toBool();
|
||||||
if (useTorrentAdditionDialog)
|
if (useTorrentAdditionDialog) {
|
||||||
AddNewTorrentDialog::showMagnet(link);
|
torrentAdditionDialog *dialog = new torrentAdditionDialog(this);
|
||||||
else
|
dialog->showLoadMagnetURI(link);
|
||||||
|
} else
|
||||||
QBtSession::instance()->addMagnetUri(link);
|
QBtSession::instance()->addMagnetUri(link);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -327,11 +327,7 @@ void RSSImp::downloadTorrent() {
|
||||||
const RssArticle article = m_feedList->getRSSItemFromUrl(item->data(Article::FeedUrlRole).toString())
|
const RssArticle article = m_feedList->getRSSItemFromUrl(item->data(Article::FeedUrlRole).toString())
|
||||||
->getItem(item->data(Article::IdRole).toString());
|
->getItem(item->data(Article::IdRole).toString());
|
||||||
|
|
||||||
QString torrentLink;
|
QString torrentLink = article.hasAttachment() ? article.torrentUrl() : article.link();
|
||||||
if (article->hasAttachment())
|
|
||||||
torrentLink = article->torrentUrl();
|
|
||||||
else
|
|
||||||
torrentLink = article->link();
|
|
||||||
|
|
||||||
// Check if it is a magnet link
|
// Check if it is a magnet link
|
||||||
if (torrentLink.startsWith("magnet:", Qt::CaseInsensitive))
|
if (torrentLink.startsWith("magnet:", Qt::CaseInsensitive))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue