summaryrefslogtreecommitdiff
path: root/yc.cpp
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2026-02-03 23:06:44 +0100
committerXavier Del Campo Romero <xavi92@disroot.org>2026-02-03 23:06:44 +0100
commitb934e6b0fdcc56f2cca1cca9ebce289cebaaafa2 (patch)
tree686950abbdc508561a635d5551a38d811c75d337 /yc.cpp
parent997e9b168d362a50cdcdc82c6cc3488a6852737a (diff)
downloadyachat6-b934e6b0fdcc56f2cca1cca9ebce289cebaaafa2.tar.gz
Replace ConversationModel with ListModel
Diffstat (limited to 'yc.cpp')
-rw-r--r--yc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yc.cpp b/yc.cpp
index 08bcb31..94798f6 100644
--- a/yc.cpp
+++ b/yc.cpp
@@ -159,7 +159,7 @@ void Yc::retrieveConversations()
new Conversation(db.jid, conv.to,
ui.conversations_list, conv.last_msg, conv.dt);
#else
- emit newConversation(conv.to);
+ emit newConversation(db.jid, conv.to, conv.last_msg);
#endif
}
}