diff --git a/SignalMessaging/groups/GroupsV2Changes.swift b/SignalMessaging/groups/GroupsV2Changes.swift index e98393880e..be7f7dbe88 100644 --- a/SignalMessaging/groups/GroupsV2Changes.swift +++ b/SignalMessaging/groups/GroupsV2Changes.swift @@ -206,9 +206,11 @@ public class GroupsV2Changes { } if let action = changeActionsProto.modifyTitle { - newGroupName = nil if let titleData = action.title { newGroupName = try groupParams.decryptString(titleData) + } else { + // Other client cleared the group title. + newGroupName = nil } }