|
|
@@ -767,11 +767,14 @@ public class GroupRelationFrontServiceImpl implements GroupRelationFrontService
|
|
|
//奈飞
|
|
|
if (goodsId == 1) {
|
|
|
if (type != null && type == 1) {
|
|
|
- if (body.contains("輸入此代碼登入") || body.contains("输入此代码登录")) {
|
|
|
+ if (body.contains("輸入此代碼登入") || body.contains("输入此代码登录") || body.contains("Enter this code to sign in")) {
|
|
|
code = StrUtil.subBetween(body, "輸入此代碼登入", "請在裝置上輸入上");
|
|
|
if (StrUtil.isEmpty(code)) {
|
|
|
code = StrUtil.subAfter(body, "输入此代码登录", true);
|
|
|
}
|
|
|
+ if (StrUtil.isEmpty(code)) {
|
|
|
+ code = StrUtil.subAfter(body, "Enter this code to sign in", true);
|
|
|
+ }
|
|
|
}
|
|
|
if (StrUtil.isEmpty(code)) {
|
|
|
throw BusinessRuntimeException.getInstance("查询失败,请检查是否发送了登陆码..");
|