parent
cbb1d29a63
commit
31265036f0
|
@ -510,12 +510,15 @@ public class PengXinAbilityImpl implements DisposeAbility {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (rspInfo.getCode() == HttpServletResponse.SC_OK &&
|
||||
(status == ErrorCode.ERR_LOGOUT.getCode() || status == ErrorCode.ERR_TOKENTIMEOUT.getCode() ||
|
||||
status == ErrorCode.ERR_TOKENNOTFOUND.getCode())) {
|
||||
if (rspInfo.getCode() == HttpServletResponse.SC_OK) {
|
||||
if (status == ErrorCode.ERR_LOGOUT.getCode() ||
|
||||
status == ErrorCode.ERR_TOKENTIMEOUT.getCode() ||
|
||||
status == ErrorCode.ERR_TOKENNOTFOUND.getCode()) {
|
||||
upgradeToken();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
} catch (Exception ignored) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue