Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrotter committed Dec 15, 2023
1 parent 374eaf9 commit 43d164d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/librssguard/network-web/apiserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ ApiResponse ApiServer::processMarkArticles(const QJsonValue& req) const {
for (const QJsonValue& article_val : data.value(QSL("articles")).toArray()) {
QJsonObject article_obj = article_val.toObject();

articles_per_accounts[article_obj.value(QSL("accountId")).toInt()].append(article_obj.value(QSL("article_custom_id")).toString();
articles_per_accounts[article_obj.value(QSL("accountId")).toInt()]
.append(article_obj.value(QSL("article_custom_id")).toString());
}

ApiResponse resp(ApiResponse::Result::Success, ApiRequest::Method::MarkArticles);
Expand Down

0 comments on commit 43d164d

Please sign in to comment.