网页加载错误显示错误网址问题

This commit is contained in:
18401019693 2022-11-17 13:26:01 +08:00
parent 99b9af2980
commit ecf3a94b64
3 changed files with 4 additions and 4 deletions

View File

@ -10,9 +10,9 @@ ext {
manifestPlaceholders = [ manifestPlaceholders = [
// //
serverHost : "https://napi.yaoulive.com", // serverHost : "https://napi.yaoulive.com",
// //
// serverHost : "https://ceshi.yaoulive.com", serverHost : "https://ceshi.yaoulive.com",
// //
txMapAppKey : "EOZBZ-ASLCU-4XPV3-BDCHZ-4E3Q7-H4BWB", txMapAppKey : "EOZBZ-ASLCU-4XPV3-BDCHZ-4E3Q7-H4BWB",

View File

@ -152,7 +152,7 @@ public class ZhuangBanActivity extends AbsActivity {
// 这个方法在6.0才出现 // 这个方法在6.0才出现
int statusCode = errorResponse.getStatusCode(); int statusCode = errorResponse.getStatusCode();
if (404 == statusCode || 500 == statusCode) { if (404 == statusCode || 500 == statusCode) {
if ( !request.getUrl().toString().contains("favicon.png")){ if ( !request.getUrl().toString().contains("favicon")){
htmlError.setVisibility(View.VISIBLE); htmlError.setVisibility(View.VISIBLE);
htmlError.setText("errorCode:" + statusCode +"\n failingUrl:" + request.getUrl()); htmlError.setText("errorCode:" + statusCode +"\n failingUrl:" + request.getUrl());
} }

View File

@ -1243,7 +1243,7 @@ public class LiveRoomViewHolder extends AbsViewHolder implements View.OnClickLis
htmlUrl.append(CommonAppConfig.HOST) htmlUrl.append(CommonAppConfig.HOST)
.append("/") .append("/")
.append(bean.getModel().getActivityUrl()) .append(bean.getModel().getActivityUrl())
.append("&nickname=") .append(bean.getModel().getActivityUrl().contains("?") ? "&nickname=" : "?nickname=")
.append(userInfo.getUserNicename()) .append(userInfo.getUserNicename())
.append("&token=") .append("&token=")
.append(userInfo.getToken()) .append(userInfo.getToken())