mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 04:49:47 -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();
|
const QList<RssStream*> &streams = getAllFeeds();
|
||||||
foreach(const RssStream *stream, streams) {
|
foreach(const RssStream *stream, streams) {
|
||||||
const QString &stream_path = stream->getPath().join("\\");
|
const QString &stream_path = stream->getPath().join("\\");
|
||||||
qDebug("Saving stream path: %s", qPrintable(stream_path));
|
if(!stream_path.isNull()) {
|
||||||
streamsUrl << stream_path;
|
qDebug("Saving stream path: %s", qPrintable(stream_path));
|
||||||
aliases << stream->getName();
|
streamsUrl << stream_path;
|
||||||
|
aliases << stream->getName();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
QSettings settings("qBittorrent", "qBittorrent");
|
QSettings settings("qBittorrent", "qBittorrent");
|
||||||
settings.beginGroup("Rss");
|
settings.beginGroup("Rss");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue