Skip to content

Commit

Permalink
Fix: Room Member send Error Change
Browse files Browse the repository at this point in the history
  • Loading branch information
Hawardshin committed Nov 29, 2024
1 parent 714d9ce commit af855eb
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ public Set<String> getRoomMemberIds(String workspaceId, Long roomId) {
if (roomParticipants == null) {
return new HashSet<>();
}
return roomParticipants.get(roomId.toString());
Set<String> membersId = roomParticipants.get(roomId.toString());
if (membersId == null) {
return new HashSet<>();
}
return membersId;
}

public void deleteAll() {
Expand Down

0 comments on commit af855eb

Please sign in to comment.