react-native-zoom-us icon indicating copy to clipboard operation
react-native-zoom-us copied to clipboard

[Android] End_meeting_for_all reopen zoom again and stop in (Preparing meeting)

Open AhmedAliEldiasty1 opened this issue 1 year ago • 4 comments

Hello, When I end meeting for all in these days It close the meeting successfully then it opened it again. this problem happens in various versions like RNZoomUs - 6.20.0 and 6.19.0

AhmedAliEldiasty1 avatar Feb 07 '24 17:02 AhmedAliEldiasty1

I have the same issue when build release. It's working correctly with debug mode

moYousefAlarand avatar Feb 10 '24 15:02 moYousefAlarand

in RNZoomUsModule.java -> method onHostResume() sometime value meetingService.getMeetingStatus() is MEETING_STATUS_INMEETING (i don't know why) so will call meetingService.returnToMeeting(reactContext.getCurrentActivity());

so i think add condition check meetingPromise != null if(!staleMeetingStatuses.contains(meetingService.getMeetingStatus()) && meetingPromise != null) { Log.i(TAG, "onHostResume, returning to meeting"); meetingService.returnToMeeting(reactContext.getCurrentActivity()); }

dnhuy avatar May 02 '24 04:05 dnhuy

in RNZoomUsModule.java -> method onHostResume() sometime value meetingService.getMeetingStatus() is MEETING_STATUS_INMEETING (i don't know why) so will call meetingService.returnToMeeting(reactContext.getCurrentActivity());

so i think add condition check meetingPromise != null if(!staleMeetingStatuses.contains(meetingService.getMeetingStatus()) && meetingPromise != null) { Log.i(TAG, "onHostResume, returning to meeting"); meetingService.returnToMeeting(reactContext.getCurrentActivity()); }

above solution working fine

svaishnani avatar May 30 '24 05:05 svaishnani

Feel free to submit a PR with your fix.

mieszko4 avatar Sep 01 '24 22:09 mieszko4