mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
BUGFIX: Fix crash when disabling then reenabling RSS
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.9.5
|
||||||
|
- BUGFIX: Fix crash when disabling then reenabling RSS
|
||||||
|
|
||||||
* Sat Feb 18 2012 - Christophe Dumez <chris@qbittorrent.org> - v2.9.4
|
* Sat Feb 18 2012 - Christophe Dumez <chris@qbittorrent.org> - v2.9.4
|
||||||
- BUGFIX: qBittorrent does not handle redirection to relative URLs correctly (Closes #919905)
|
- BUGFIX: qBittorrent does not handle redirection to relative URLs correctly (Closes #919905)
|
||||||
- BUGFIX: Cmd+M minimizes main window on Mac OS X (Closes #928216)
|
- BUGFIX: Cmd+M minimizes main window on Mac OS X (Closes #928216)
|
||||||
|
|||||||
@@ -51,8 +51,10 @@ RssDownloadRuleList* RssDownloadRuleList::instance()
|
|||||||
|
|
||||||
void RssDownloadRuleList::drop()
|
void RssDownloadRuleList::drop()
|
||||||
{
|
{
|
||||||
if(m_instance)
|
if(m_instance) {
|
||||||
delete m_instance;
|
delete m_instance;
|
||||||
|
m_instance = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RssDownloadRule RssDownloadRuleList::findMatchingRule(const QString &feed_url, const QString &article_title) const
|
RssDownloadRule RssDownloadRuleList::findMatchingRule(const QString &feed_url, const QString &article_title) const
|
||||||
|
|||||||
Reference in New Issue
Block a user