Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5692cc6 + 0858b4f commit 6002540Copy full SHA for 6002540
‎client/packages/lowcoder/src/comps/comps/meetingComp/videoMeetingControllerComp.tsx
@@ -170,7 +170,9 @@ const shareScreen = async (sharing: boolean) => {
170
};
171
const leaveChannel = async () => {
172
//stops local sharing video
173
- screenShareStream.close();
+ if (screenShareStream) {
174
+ screenShareStream.close();
175
+ }
176
177
//stops local video streaming and puts off the camera
178
if (videoTrack) {
0 commit comments