Merge remote-tracking branch 'origin/branch_new' into branch_new

This commit is contained in:
2025-12-19 18:42:30 +08:00
5 changed files with 16 additions and 3 deletions

View File

@@ -2850,6 +2850,8 @@ class RoomActivity : BaseMvpActivity<RoomPresenter?, ActivityRoomBinding?>(),
return
}
switchMic(2)
}else{
mBinding?.ivSoundEffects?.visibility = View.GONE
}
} else {
if (RoomType.fromTypeId(mRoomInfoResp?.room_info?.type_id) == RoomType.JUKEBOX

View File

@@ -134,7 +134,7 @@ public class RedBagSendDialog extends BaseDialog<DialogRedBagSendBinding> {
int num = Integer.parseInt(numStr);
int text = Integer.parseInt(textStr);
if (text <= num) {
if (text < num) {
diaj=false;
ToastUtils.show("金额必须大于数量");
return;
@@ -281,7 +281,7 @@ public class RedBagSendDialog extends BaseDialog<DialogRedBagSendBinding> {
int num = Integer.parseInt(numStr);
int text = Integer.parseInt(textStr);
if (text <= num) {
if (text < num) {
diaj=false;
ToastUtils.show("金额必须大于数量");
return;