Commit 166cd2e8 by carrieyzzhang

reged ip default unknown

parent 4f9d3365
...@@ -273,7 +273,7 @@ public class RegedServiceImpl implements RegedService { ...@@ -273,7 +273,7 @@ public class RegedServiceImpl implements RegedService {
String token = HashAlgorithms.MD5("superuser_" + account.getId()); String token = HashAlgorithms.MD5("superuser_" + account.getId());
//审核 //审核
final String sendEmailUrl = VERIFY_EMAIL_SEND_URL + account.getId()+"/"+token + "?ip=" + (StringUtil.isEmpty(ip)?"":ip); final String sendEmailUrl = VERIFY_EMAIL_SEND_URL + account.getId()+"/"+token + "?ip=" + (StringUtil.isEmpty(ip)?"unknown":ip);
Thread sendEmailThread = new Thread(){ Thread sendEmailThread = new Thread(){
@Override @Override
public void run(){ public void run(){
......
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 to comment