From ef62120fc540aeba2766581f60c86b6652282e1f Mon Sep 17 00:00:00 2001 From: Rello Date: Fri, 5 Sep 2025 08:17:16 +0700 Subject: [PATCH] Change Circle type to Team in sharee.cpp Signed-off-by: Rello --- src/gui/sharee.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/sharee.cpp b/src/gui/sharee.cpp index 225efe3c7b..bdaecd502d 100644 --- a/src/gui/sharee.cpp +++ b/src/gui/sharee.cpp @@ -41,7 +41,7 @@ QString Sharee::format() const formatted += QLatin1String(" (email)"); } else if (_type == Type::Federated) { formatted += QLatin1String(" (remote)"); - } else if (_type == Type::Circle) { + } else if (_type == Type::Team) { formatted += QLatin1String(" (team)"); } else if (_type == Type::Room) { formatted += QLatin1String(" (conversation)");