Skip to content

Commit

Permalink
Merge pull request #14 from NfoAlex/ChangeInfoOnJoinedUser
Browse files Browse the repository at this point in the history
[change] - チャンネル参加者リストの情報量
  • Loading branch information
NfoAlex committed Jun 7, 2023
2 parents 246be20 + 0a40479 commit 1ca1ec4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dbControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,10 @@ let getInfoChannelJoinedUserList = function getInfoChannelJoinedUserList(dat) {
//配列追加
channelJoinedUserList.push({
userid: objUser[index][0],
username: objUser[index][1].name
username: objUser[index][1].name,
role: objUser[index][1].role,
loggedin : objUser[index][1].state.loggedin,
banned: objUser[index][1].state.banned
});

}
Expand Down

0 comments on commit 1ca1ec4

Please sign in to comment.