Browse Source

Added another check

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
040e94cab7
  1. 8
      src/rss.cpp

8
src/rss.cpp

@ -364,9 +364,11 @@ void RssManager::saveStreamList(){ @@ -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…
Cancel
Save