mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07:00
Added another check
This commit is contained in:
parent
93563365ac
commit
040e94cab7
1 changed files with 5 additions and 3 deletions
|
@ -364,9 +364,11 @@ void RssManager::saveStreamList(){
|
|||
const QList<RssStream*> &streams = getAllFeeds();
|
||||
foreach(const RssStream *stream, streams) {
|
||||
const QString &stream_path = stream->getPath().join("\\");
|
||||
qDebug("Saving stream path: %s", qPrintable(stream_path));
|
||||
streamsUrl << stream_path;
|
||||
aliases << stream->getName();
|
||||
if(!stream_path.isNull()) {
|
||||
qDebug("Saving stream path: %s", qPrintable(stream_path));
|
||||
streamsUrl << stream_path;
|
||||
aliases << stream->getName();
|
||||
}
|
||||
}
|
||||
QSettings settings("qBittorrent", "qBittorrent");
|
||||
settings.beginGroup("Rss");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue