Skip to content

Commit

Permalink
[sqlite] Add missing spaces in getInboundP2PMessagesByID query
Browse files Browse the repository at this point in the history
Summary: Fixes https://phab.comm.dev/D13897?id=45735#inline-78478

Test Plan: It's just formatting changes

Reviewers: kamil, ashoat

Reviewed By: ashoat

Subscribers: ashoat, tomek

Differential Revision: https://phab.comm.dev/D13922
  • Loading branch information
graszka22 committed Nov 13, 2024
1 parent 4d3afd3 commit add745d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions native/cpp/CommonCpp/DatabaseManagers/SQLiteQueryExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2752,8 +2752,8 @@ std::vector<InboundP2PMessage> SQLiteQueryExecutor::getInboundP2PMessagesByID(
const std::vector<std::string> &ids) const {
std::stringstream getInboundP2PMessagesSQLStream;
getInboundP2PMessagesSQLStream << "SELECT "
" message_id, sender_device_id, "
" plaintext, status, sender_user_id "
" message_id, sender_device_id, "
" plaintext, status, sender_user_id "
"FROM inbound_p2p_messages "
"WHERE message_id IN "
<< getSQLStatementArray(ids.size()) << ";";
Expand Down
Binary file modified web/shared-worker/_generated/comm_query_executor.wasm
Binary file not shown.

0 comments on commit add745d

Please sign in to comment.