소스 검색

bug #1837

(cherry picked from commit e0c0408e24)
tags/v0.10.3
Shaun 2 년 전
committed by Big Bad Waffle
부모
커밋
ff338f6cd3
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/server/server/onConnection.js

+ 4
- 0
src/server/server/onConnection.js 파일 보기

@@ -20,11 +20,15 @@ const onRequest = (socket, msg, callback) => {
if (!router.allowedCpn(msg))
return;

delete msg.threadModule;

cons.route(socket, msg);
} else if (msg.threadModule) {
if (!router.allowedGlobalCall(msg.threadModule, msg.method))
return;

delete msg.cpn;

cons.route(socket, msg);
} else {
if (!router.allowedGlobal(msg))


불러오는 중...
취소
저장