Session: restore PartialEq impl as it was

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2022-12-26 16:39:25 +01:00
parent 5239a19871
commit cca88740c7
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -49,7 +49,7 @@ impl Session {
impl PartialEq for Session { impl PartialEq for Session {
fn eq(&self, other: &Session) -> bool { fn eq(&self, other: &Session) -> bool {
self.real() == other.real() // && self.participant() == other.participant() self.real() == other.real() && self.participant() == other.participant()
} }
} }