From 1cfe13cb098538a412684356952566c2c988299b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Tue, 30 Dec 2025 17:11:01 +0100 Subject: [PATCH] fix: Show timezone offset even without other profile infos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- NextcloudTalk/Rooms/RoomInfo/ProfileInfo.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NextcloudTalk/Rooms/RoomInfo/ProfileInfo.swift b/NextcloudTalk/Rooms/RoomInfo/ProfileInfo.swift index 909118359..e7d2996d6 100644 --- a/NextcloudTalk/Rooms/RoomInfo/ProfileInfo.swift +++ b/NextcloudTalk/Rooms/RoomInfo/ProfileInfo.swift @@ -48,7 +48,7 @@ public struct ProfileInfo { } public func hasAnyInformation() -> Bool { - return role != nil || pronouns != nil || organisation != nil || address != nil + return role != nil || pronouns != nil || organisation != nil || address != nil || timezoneOffset != nil } }