mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
Fix compilation error
This commit is contained in:
11
src/rss.cpp
11
src/rss.cpp
@@ -363,12 +363,13 @@ void RssManager::saveStreamList(){
|
||||
QStringList aliases;
|
||||
const QList<RssStream*> &streams = getAllFeeds();
|
||||
foreach(const RssStream *stream, streams) {
|
||||
const QString &stream_path = stream->getPath().join("\\");
|
||||
if(!stream_path.isNull()) {
|
||||
qDebug("Saving stream path: %s", qPrintable(stream_path));
|
||||
streamsUrl << stream_path;
|
||||
aliases << stream->getName();
|
||||
QString stream_path = stream->getPath().join("\\");
|
||||
if(stream_path.isNull()) {
|
||||
stream_path = "";
|
||||
}
|
||||
qDebug("Saving stream path: %s", qPrintable(stream_path));
|
||||
streamsUrl << stream_path;
|
||||
aliases << stream->getName();
|
||||
}
|
||||
QSettings settings("qBittorrent", "qBittorrent");
|
||||
settings.beginGroup("Rss");
|
||||
|
||||
Reference in New Issue
Block a user