|
|
@@ -41,6 +41,11 @@ public class WebClientSocket extends BaseClass {
|
|
|
userid = parameter.tokenlist.get(accesstoken);
|
|
|
userRow = parameter.userIdList.get(userid);
|
|
|
} else {
|
|
|
+ //sendSystemMessage("");
|
|
|
+ JSONObject methodobject = new JSONObject();
|
|
|
+ methodobject.put("type", "err");
|
|
|
+ methodobject.put("msg", "ÇëµÇ½");
|
|
|
+ sendSystemMessage(methodobject);
|
|
|
return;
|
|
|
}
|
|
|
parameter.websocketClients.put(userid, this);
|
|
|
@@ -193,6 +198,7 @@ public class WebClientSocket extends BaseClass {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ sendSystemMessage(JSONObject.parseObject(result));
|
|
|
return;
|
|
|
}
|
|
|
|