新增被禁言的提示

This commit is contained in:
2023-06-25 16:19:55 +08:00
parent f3ff37aea7
commit abbb8c524c
3 changed files with 8 additions and 2 deletions

View File

@@ -132,7 +132,11 @@ public class SocketRyChatUtil {
@Override
public void onError(Message message, RongIMClient.ErrorCode errorCode) {
Log.e("tx", "aaa" + errorCode.toString());
ToastUtil.show(errorCode.code + ":" + errorCode.msg);
if (errorCode.code == 23408) {
ToastUtil.show(R.string.live_ban_tip);
} else {
ToastUtil.show(errorCode.code + ":" + errorCode.msg);
}
}
});
@@ -411,7 +415,7 @@ public class SocketRyChatUtil {
ct = CommonAppContext.sInstance.getBaseContext().getString(R.string.live_shut_2);
break;
case 2:
ct = String.format(CommonAppContext.sInstance.getBaseContext().getString(R.string.live_shut_3),time+"");
ct = String.format(CommonAppContext.sInstance.getBaseContext().getString(R.string.live_shut_3), time + "");
break;
}