Skip to content

Commit

Permalink
fix(build): build was failing due to web-core and utils mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ravindra-dyte committed Dec 4, 2024
1 parent 1fa7271 commit cb2f911
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@dyteinternals/utils": "^1.7.10",
"@dyteinternals/utils": "^3.1.0",
"@dytesdk/web-core": "staging",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class DyteParticipantTile {
}

private mediaConnectionUpdateListener() {
const { consuming, producing } = this.meeting?.meta?.mediaState ?? {};
const { recv: consuming, send: producing } = this.meeting?.meta?.mediaState ?? {};

if (consuming?.state !== 'connected' && !this.isSelf()) {
this.mediaConnectionError = true;
Expand Down

0 comments on commit cb2f911

Please sign in to comment.