mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-04 06:45:45 +02:00
misc: update searchConversation
Change-Id: I2bb01e2846a2c543b7f17086794cd007c2ac39ae
This commit is contained in:
parent
8b93dfe44e
commit
1c53598247
3 changed files with 6 additions and 4 deletions
2
daemon
2
daemon
|
@ -1 +1 @@
|
|||
Subproject commit 08ef8dd80d571816259b195b0956a472a40b58ad
|
||||
Subproject commit e037e6358c8f720b0ece5913361dec39777004ab
|
|
@ -3948,7 +3948,7 @@ void
|
|||
ConversationModel::getConvMediasInfos(const QString& accountId, const QString& conversationId)
|
||||
{
|
||||
pimpl_->currentMsgRequestId = ConfigurationManager::instance().searchConversation(
|
||||
accountId, conversationId, "", "", "", "application/data-transfer+json", 0, 0, 0);
|
||||
accountId, conversationId, "", "", "", "application/data-transfer+json", 0, 0, 0, 0);
|
||||
};
|
||||
|
||||
void
|
||||
|
|
|
@ -1192,7 +1192,8 @@ public Q_SLOTS: // METHODS
|
|||
const QString& type,
|
||||
const int64_t& after,
|
||||
const int64_t& before,
|
||||
const uint32_t& maxResult)
|
||||
const uint32_t& maxResult,
|
||||
const int32_t& flag)
|
||||
{
|
||||
return libjami::searchConversation(accountId.toStdString(),
|
||||
conversationId.toStdString(),
|
||||
|
@ -1202,7 +1203,8 @@ public Q_SLOTS: // METHODS
|
|||
type.toStdString(),
|
||||
after,
|
||||
before,
|
||||
maxResult);
|
||||
maxResult,
|
||||
flag);
|
||||
}
|
||||
Q_SIGNALS: // SIGNALS
|
||||
void volumeChanged(const QString& device, double value);
|
||||
|
|
Loading…
Add table
Reference in a new issue