Исправление зависших сессий на сервере при преждевременном RTC close
This commit is contained in:
@@ -157,4 +157,12 @@ public class Room {
|
||||
buffer.flip();
|
||||
this.sfu.getConnection().send(buffer);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) return true;
|
||||
if (obj == null || getClass() != obj.getClass()) return false;
|
||||
Room room = (Room) obj;
|
||||
return roomId.equals(room.roomId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user