1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Display group members to all users if it is public

This commit is contained in:
2021-03-17 18:56:09 +01:00
parent 6d1fc388d0
commit 07b42df06a
3 changed files with 13 additions and 12 deletions

View File

@ -52,7 +52,7 @@ class _GroupMembershipWidgetState extends SafeState<GroupMembershipWidget> {
return _buildVisitorState();
default:
throw Exception("Unkonwn group pmembership level state: $_level");
throw Exception("Unknown group membership level state: $_level");
}
}
@ -140,7 +140,6 @@ class _GroupMembershipWidgetState extends SafeState<GroupMembershipWidget> {
return RichText(
text: TextSpan(
text: tr("Request membership"),
style: TextStyle(color: Colors.blue),
recognizer: TapGestureRecognizer()
..onTap = () => _requestMembership()),
);