프로필 변경 질문드립니다. #560
Unanswered
wiresharkkkk
asked this question in
Q&A
Replies: 1 comment
-
아 단순 오타가 있었습니다 해결완료 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
프로필 변경시 멘션을 하려하는데
아래 코드에서
MentionContent(user.userId)
MentionContent(lastInfo.nickname)
이렇게도 바꾸어 보았지만 작동을 하지 않습니다.
멘션 사용법이 잘못 되었나요?
`CLIENT.on('profile_changed', (channel, lastInfo, user) => {
console.log(
Profile of ${user.userId} changed. From name: ${lastInfo.nickname} profile: ${lastInfo.profileURL}
);let builder = new ChatBuilder();
builder.text("hi");
builder.append(new MentionContent(user));
channel.sendChat(builder.build(KnownChatType.TEXT));
});
`
Beta Was this translation helpful? Give feedback.
All reactions