mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 21:03:30 -07:00
Possible fix for crash in RSS code. Closes #1901.
This commit is contained in:
parent
611bddf485
commit
495800d6e9
1 changed files with 5 additions and 2 deletions
|
@ -334,8 +334,11 @@ void RSSImp::downloadSelectedTorrents()
|
||||||
{
|
{
|
||||||
QList<QListWidgetItem*> selected_items = listArticles->selectedItems();
|
QList<QListWidgetItem*> selected_items = listArticles->selectedItems();
|
||||||
foreach (const QListWidgetItem* item, selected_items) {
|
foreach (const QListWidgetItem* item, selected_items) {
|
||||||
RssArticlePtr article = m_feedList->getRSSItemFromUrl(item->data(Article::FeedUrlRole).toString())
|
if (!item) continue;
|
||||||
->getItem(item->data(Article::IdRole).toString());
|
RssFeedPtr feed = m_feedList->getRSSItemFromUrl(item->data(Article::FeedUrlRole).toString());
|
||||||
|
if (!feed) continue;
|
||||||
|
RssArticlePtr article = feed->getItem(item->data(Article::IdRole).toString());
|
||||||
|
if (!article) continue;
|
||||||
|
|
||||||
QString torrentLink = article->torrentUrl();
|
QString torrentLink = article->torrentUrl();
|
||||||
// Check if it is a magnet link
|
// Check if it is a magnet link
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue