Compare commits
No commits in common. "5f79a8b523d5fcc125bfc6a5f54328ea4bcec304" and "a9877b2a9b1ea1f566fc016944a9f7a7e5742ebd" have entirely different histories.
5f79a8b523
...
a9877b2a9b
@ -37,8 +37,6 @@ class RoomEditPage extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _RoomEditPageState extends State<RoomEditPage> {
|
class _RoomEditPageState extends State<RoomEditPage> {
|
||||||
static const Set<int> _roomGroupReadyCodes = {0, 10021, 10025};
|
|
||||||
|
|
||||||
RtcProvider? rtcProvider;
|
RtcProvider? rtcProvider;
|
||||||
bool isEdit = false;
|
bool isEdit = false;
|
||||||
final TextEditingController _roomNameController = TextEditingController();
|
final TextEditingController _roomNameController = TextEditingController();
|
||||||
@ -584,7 +582,7 @@ class _RoomEditPageState extends State<RoomEditPage> {
|
|||||||
SCLoadingManager.hide();
|
SCLoadingManager.hide();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (_roomGroupReadyCodes.contains(c.code)) {
|
if (c.code == 0) {
|
||||||
SCLoadingManager.hide();
|
SCLoadingManager.hide();
|
||||||
SCNavigatorUtils.goBack(context);
|
SCNavigatorUtils.goBack(context);
|
||||||
currentRtcProvider.joinVoiceRoomSession(
|
currentRtcProvider.joinVoiceRoomSession(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user