fix feedly msg state sync
This commit is contained in:
parent
a3a8a3ff64
commit
defd8c6f48
@ -203,27 +203,30 @@ 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;
|
||||||
QJsonObject input;
|
|
||||||
|
|
||||||
input[QSL("action")] = action;
|
for (int i = 0; i < msg_custom_ids.size(); i += 500) {
|
||||||
input[QSL("type")] = QSL("entries");
|
QJsonObject input;
|
||||||
input[QSL("entryIds")] = QJsonArray::fromStringList(msg_custom_ids);
|
|
||||||
|
|
||||||
QByteArray input_data = QJsonDocument(input).toJson(QJsonDocument::JsonFormat::Compact);
|
input[QSL("action")] = action;
|
||||||
auto result =
|
input[QSL("type")] = QSL("entries");
|
||||||
NetworkFactory::performNetworkOperation(target_url,
|
input[QSL("entryIds")] = QJsonArray::fromStringList(msg_custom_ids.mid(i, 500));
|
||||||
timeout,
|
|
||||||
input_data,
|
|
||||||
output,
|
|
||||||
QNetworkAccessManager::Operation::PostOperation,
|
|
||||||
{bearerHeader(bear), {HTTP_HEADERS_CONTENT_TYPE, "application/json"}},
|
|
||||||
false,
|
|
||||||
{},
|
|
||||||
{},
|
|
||||||
m_service->networkProxy());
|
|
||||||
|
|
||||||
if (result.m_networkError != QNetworkReply::NetworkError::NoError) {
|
QByteArray input_data = QJsonDocument(input).toJson(QJsonDocument::JsonFormat::Compact);
|
||||||
throw NetworkException(result.m_networkError, output);
|
auto result =
|
||||||
|
NetworkFactory::performNetworkOperation(target_url,
|
||||||
|
timeout,
|
||||||
|
input_data,
|
||||||
|
output,
|
||||||
|
QNetworkAccessManager::Operation::PostOperation,
|
||||||
|
{bearerHeader(bear), {HTTP_HEADERS_CONTENT_TYPE, "application/json"}},
|
||||||
|
false,
|
||||||
|
{},
|
||||||
|
{},
|
||||||
|
m_service->networkProxy());
|
||||||
|
|
||||||
|
if (result.m_networkError != QNetworkReply::NetworkError::NoError) {
|
||||||
|
throw NetworkException(result.m_networkError, output);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user