diff --git a/src/libclient/api/interaction.h b/src/libclient/api/interaction.h index 1c07b320c56fc5db023c3074f72190b9aa058140..be83d4780160f6016eb876f04a641323d9687e33 100644 --- a/src/libclient/api/interaction.h +++ b/src/libclient/api/interaction.h @@ -355,7 +355,11 @@ struct Info if (type == Type::CONTACT) { authorUri = accountURI == message["uri"] ? "" : message["uri"]; } else if (type == Type::INITIAL) { - body = QObject::tr("Swarm created"); + if (message["mode"] == "0") { + body = QObject::tr("Private conversation created"); + } else { + body = QObject::tr("Swarm created"); + } } else if (type == Type::CALL) { duration = message["duration"].toInt() / 1000; if (message.contains("confId"))