Commit 93cabfd2 by wukun

24.1.16

parent 6c426dba
......@@ -769,7 +769,13 @@ public class MainActivity extends BaseActivity<MainPresenter, ActivityMainBindin
if (confirm) {
UserInfo info = UserManager.getInstance().getUser();
Bundle bundle = new Bundle();
bundle.putString(Constants.URL, url+"&accountId=" + info.getAccountId()+"&token=" + info.getToken());
String symbol;
if (url.contains("?")){
symbol = "&";
}else{
symbol = "?";
}
bundle.putString(Constants.URL, url+ symbol +"accountId=" + info.getAccountId()+"&token=" + info.getToken());
// bundle.putString(Constants.URL, "https://www.baidu.com");
bundle.putString(Constants.TITLE,str);
startActivity(CommeWebViewActivity.class, bundle);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment