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.
1 parent f563ca6 commit 61d548eCopy full SHA for 61d548e
client/packages/lowcoder/src/comps/comps/meetingComp/videoMeetingControllerComp.tsx
@@ -167,7 +167,9 @@ const shareScreen = async (sharing: boolean) => {
167
};
168
const leaveChannel = async () => {
169
//stops local sharing video
170
- screenShareStream.close();
+ if (screenShareStream) {
171
+ screenShareStream.close();
172
+ }
173
174
//stops local video streaming and puts off the camera
175
if (videoTrack) {
0 commit comments