mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-27 16:09:20 +00:00
fix(MainDb): rename insertOrUpdateBasicChatRoom to insertOrUpdateImportedBasicChatRoom
This commit is contained in:
parent
b51fd2e414
commit
67053e8e8e
2 changed files with 3 additions and 3 deletions
|
|
@ -53,7 +53,7 @@ private:
|
|||
long long insertSipAddress (const std::string &sipAddress);
|
||||
void insertContent (long long messageEventId, const Content &content);
|
||||
long long insertContentType (const std::string &contentType);
|
||||
long long insertOrUpdateBasicChatRoom (
|
||||
long long insertOrUpdateImportedBasicChatRoom (
|
||||
long long peerSipAddressId,
|
||||
long long localSipAddressId,
|
||||
const tm &creationTime
|
||||
|
|
|
|||
|
|
@ -213,7 +213,7 @@ static constexpr string &blobToString (string &in) {
|
|||
return q->getLastInsertId();
|
||||
}
|
||||
|
||||
long long MainDbPrivate::insertOrUpdateBasicChatRoom (
|
||||
long long MainDbPrivate::insertOrUpdateImportedBasicChatRoom (
|
||||
long long peerSipAddressId,
|
||||
long long localSipAddressId,
|
||||
const tm &creationTime
|
||||
|
|
@ -2435,7 +2435,7 @@ static constexpr string &blobToString (string &in) {
|
|||
const long long &eventId = getLastInsertId();
|
||||
const long long &localSipAddressId = d->insertSipAddress(message.get<string>(LEGACY_MESSAGE_COL_LOCAL_ADDRESS));
|
||||
const long long &remoteSipAddressId = d->insertSipAddress(message.get<string>(LEGACY_MESSAGE_COL_REMOTE_ADDRESS));
|
||||
const long long &chatRoomId = d->insertOrUpdateBasicChatRoom(
|
||||
const long long &chatRoomId = d->insertOrUpdateImportedBasicChatRoom(
|
||||
remoteSipAddressId,
|
||||
localSipAddressId,
|
||||
creationTime
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue