From b9732b65e426b12da5209b2a5efb734f98007606 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Wed, 5 Mar 2025 10:02:25 -0500 Subject: [PATCH] Merge prod into main (#2040) * fix: always pass context to classCode function * chore: bump version number (#1872) * fix: add release workflow updates to production branch (#1873) --- .github/workflows/release.yaml | 2 +- lib/pangea/chat_list/utils/chat_list_handle_space_tap.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 73d4cf44b..02daf3233 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -202,4 +202,4 @@ jobs: aws s3 sync ./build/web s3://$WEBAPP_S3_BUCKET - name: AWS CloudFront Invalidation run: | - aws cloudfront create-invalidation --distribution-id $CF_DISTRIBUTION_ID --paths "/*" + aws cloudfront create-invalidation --distribution-id $CF_DISTRIBUTION_ID --paths "/*" \ No newline at end of file diff --git a/lib/pangea/chat_list/utils/chat_list_handle_space_tap.dart b/lib/pangea/chat_list/utils/chat_list_handle_space_tap.dart index 080f3861b..6f3b05613 100644 --- a/lib/pangea/chat_list/utils/chat_list_handle_space_tap.dart +++ b/lib/pangea/chat_list/utils/chat_list_handle_space_tap.dart @@ -56,7 +56,7 @@ void chatListHandleSpaceTap( if (rooms.any((s) => s.spaceChildren.any((c) => c.roomId == space.id))) { autoJoin(space); } else if (justInputtedCode != null && - justInputtedCode == space.classCode) { + justInputtedCode == space.classCode(context)) { // do nothing } else { controller.showInviteDialog(space);