fix feedly msg state sync

This commit is contained in:
Martin Rotter 2023-02-20 11:40:08 +01:00
parent a3a8a3ff64
commit defd8c6f48

View File

@ -203,11 +203,13 @@ void FeedlyNetwork::markers(const QString& action, const QStringList& msg_custom
QString target_url = fullUrl(Service::Markers); QString target_url = fullUrl(Service::Markers);
int timeout = qApp->settings()->value(GROUP(Feeds), SETTING(Feeds::UpdateTimeout)).toInt(); int timeout = qApp->settings()->value(GROUP(Feeds), SETTING(Feeds::UpdateTimeout)).toInt();
QByteArray output; QByteArray output;
for (int i = 0; i < msg_custom_ids.size(); i += 500) {
QJsonObject input; QJsonObject input;
input[QSL("action")] = action; input[QSL("action")] = action;
input[QSL("type")] = QSL("entries"); input[QSL("type")] = QSL("entries");
input[QSL("entryIds")] = QJsonArray::fromStringList(msg_custom_ids); input[QSL("entryIds")] = QJsonArray::fromStringList(msg_custom_ids.mid(i, 500));
QByteArray input_data = QJsonDocument(input).toJson(QJsonDocument::JsonFormat::Compact); QByteArray input_data = QJsonDocument(input).toJson(QJsonDocument::JsonFormat::Compact);
auto result = auto result =
@ -226,6 +228,7 @@ void FeedlyNetwork::markers(const QString& action, const QStringList& msg_custom
throw NetworkException(result.m_networkError, output); throw NetworkException(result.m_networkError, output);
} }
} }
}
QList<Message> FeedlyNetwork::entries(const QStringList& ids) { QList<Message> FeedlyNetwork::entries(const QStringList& ids) {
const QString bear = bearer(); const QString bear = bearer();