Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
AhmedAliEldiasty1 opened this issue Feb 7, 2024 · 4 comments

Comments

@AhmedAliEldiasty1
Copy link

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

@moYousefAlarand
Copy link

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

@dnhuy
Copy link

dnhuy commented May 2, 2024

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());
}

@svaishnani
Copy link

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

@mieszko4
Copy link
Owner

mieszko4 commented Sep 1, 2024

Feel free to submit a PR with your fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants