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)
This commit is contained in:
parent
363b0e6f34
commit
b9732b65e4
2 changed files with 2 additions and 2 deletions
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
|
@ -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 "/*"
|
||||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue