fix feedly msg state sync
This commit is contained in:
parent
a3a8a3ff64
commit
defd8c6f48
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user