Merge pull request #866 from pangeachat/disable-encryption

explicitly set enableEncryption to false when creating a new group chat
This commit is contained in:
ggurdin 2024-10-29 11:22:56 -04:00 committed by GitHub
commit c8865b12a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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');