소스 검색

bug

tags/v0.11.0.3^2
Shaun 2 년 전
부모
커밋
fc96ab3390
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/server/security/router.js

+ 1
- 1
src/server/security/router.js 파일 보기

@@ -153,7 +153,7 @@ module.exports = {
const result = this.signatureCorrect(msg, signature);

if (!result || msg.cpn !== 'player' || msg.method !== 'performAction') {
if (result && signature.allowWhenIngame === false && source.name !== undefined)
if (result && signature.allowWhenIngame === false && source?.name !== undefined)
return false;

return result;


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