fix:装扮礼物点击banner增加空值判断

This commit is contained in:
Max
2024-02-01 14:33:53 +08:00
parent afab35a691
commit 4fd1bd73ea

View File

@@ -1367,7 +1367,7 @@ public class GiftDialog extends BottomSheetDialog implements View.OnClickListene
case R.id.iv_dress_up_banner:
if (currentGiftInfo != null) {
String skipUrl = currentGiftInfo.getBannerSkipUrl();
if (skipUrl != null) {
if (skipUrl != null && skipUrl.length() > 0) {
CommonWebViewActivity.start(context, skipUrl);
}
}