mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-24 14:48:07 +00:00
fix(MainDb): add space before state value in conference chat message update
This commit is contained in:
parent
f6a6edc787
commit
6a1debb72c
1 changed files with 1 additions and 1 deletions
|
|
@ -1371,7 +1371,7 @@ MainDb::MainDb (const shared_ptr<Core> &core) : AbstractDb(*new MainDbPrivate),
|
|||
return;
|
||||
|
||||
string query = "UPDATE FROM conference_chat_message_event"
|
||||
" SET state = " + Utils::toString(static_cast<int>(ChatMessage::State::Displayed));
|
||||
" SET state = " + Utils::toString(static_cast<int>(ChatMessage::State::Displayed)) + " ";
|
||||
query += "WHERE";
|
||||
if (chatRoomId.isValid())
|
||||
query += " event_id IN ("
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue