Skip to content

Commit

Permalink
๐Ÿš‘ !HOTFIX: ๋กœ๊น… ์˜ค๋ฅ˜ ํ•ด๊ฒฐ
Browse files Browse the repository at this point in the history
  • Loading branch information
sieunie committed Nov 13, 2024
1 parent cc95624 commit e42261d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions BE/src/websocket/base-socket.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ export class BaseSocketService implements OnModuleInit {

if (data.length < 2) {
const json = JSON.parse(data[0]);
this.logger.log(
`ํ•œ๊ตญํˆฌ์ž์ฆ๊ถŒ ์›น์†Œ์ผ“ ์—ฐ๊ฒฐ: ${json.body.msg1}`,
json.header.tr_id,
);
if (json.body)
this.logger.log(
`ํ•œ๊ตญํˆฌ์ž์ฆ๊ถŒ ์›น์†Œ์ผ“ ์—ฐ๊ฒฐ: ${json.body.msg1}`,
json.header.tr_id,
);
return;
}

Expand Down

0 comments on commit e42261d

Please sign in to comment.