Skip to content

Commit

Permalink
【Android】Solve the problem of concurrent modification of the applicat…
Browse files Browse the repository at this point in the history
…ion list by raising hands
  • Loading branch information
rulongzhang authored and AbySwifter committed Nov 23, 2023
1 parent 3e96cbe commit 76f2169
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public RoomStore() {
videoModel = new VideoModel();
allUserList = new CopyOnWriteArrayList<>();
seatUserList = new CopyOnWriteArrayList<>();
takeSeatRequestList = new LinkedList<>();
takeSeatRequestList = new CopyOnWriteArrayList<>();
}

public void addTakeSeatRequest(TUIRoomDefine.Request request) {
Expand Down

0 comments on commit 76f2169

Please sign in to comment.