Исправление зависших сессий на сервере при преждевременном RTC close

This commit is contained in:
RoyceDa
2026-04-07 14:43:32 +02:00
parent faaffd86d0
commit bc0a64f450
5 changed files with 57 additions and 18 deletions

View File

@@ -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);
}
}