explicitly set enableEncryption to false when creating a new group chat

This commit is contained in:
ggurdin 2024-10-29 11:22:14 -04:00
parent ebbc03068a
commit a0bced5ae7
No known key found for this signature in database
GPG key ID: A01CB41737CBB478
2 changed files with 6 additions and 0 deletions

View file

@ -404,6 +404,9 @@ class _SpaceViewState extends State<SpaceView> {
),
]
: null,
// #Pangea
enableEncryption: false,
// Pangea#
);
}
await activeSpace.setSpaceChild(roomId);

View file

@ -74,6 +74,9 @@ class NewGroupController extends State<NewGroup> {
content: {'url': avatarUrl.toString()},
),
],
// #Pangea
enableEncryption: false,
// Pangea#
);
if (!mounted) return;
context.go('/rooms/$roomId/invite');