mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-10 17:55:40 +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)
|
ConversationModel::getConvMediasInfos(const QString& accountId, const QString& conversationId)
|
||||||
{
|
{
|
||||||
pimpl_->currentMsgRequestId = ConfigurationManager::instance().searchConversation(
|
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
|
void
|
||||||
|
|
|
@ -1192,7 +1192,8 @@ public Q_SLOTS: // METHODS
|
||||||
const QString& type,
|
const QString& type,
|
||||||
const int64_t& after,
|
const int64_t& after,
|
||||||
const int64_t& before,
|
const int64_t& before,
|
||||||
const uint32_t& maxResult)
|
const uint32_t& maxResult,
|
||||||
|
const int32_t& flag)
|
||||||
{
|
{
|
||||||
return libjami::searchConversation(accountId.toStdString(),
|
return libjami::searchConversation(accountId.toStdString(),
|
||||||
conversationId.toStdString(),
|
conversationId.toStdString(),
|
||||||
|
@ -1202,7 +1203,8 @@ public Q_SLOTS: // METHODS
|
||||||
type.toStdString(),
|
type.toStdString(),
|
||||||
after,
|
after,
|
||||||
before,
|
before,
|
||||||
maxResult);
|
maxResult,
|
||||||
|
flag);
|
||||||
}
|
}
|
||||||
Q_SIGNALS: // SIGNALS
|
Q_SIGNALS: // SIGNALS
|
||||||
void volumeChanged(const QString& device, double value);
|
void volumeChanged(const QString& device, double value);
|
||||||
|
|
Loading…
Add table
Reference in a new issue