Ignore RSS articles with non-unique identifiers

This commit is contained in:
Vladimir Golovnev (Glassez) 2019-06-02 13:30:00 +03:00
parent d710bbd9ef
commit 68ee071331
No known key found for this signature in database
GPG key ID: 52A2C7DEE2DFA6F7
2 changed files with 19 additions and 2 deletions

View file

@ -31,6 +31,7 @@
#include <QList>
#include <QObject>
#include <QSet>
#include <QString>
#include <QVariantHash>
@ -69,6 +70,7 @@ namespace RSS
QString m_baseUrl;
ParsingResult m_result;
QSet<QString> m_articleIDs;
};
}
}