diff --git a/src/session.rs b/src/session.rs index 323b92b..ac0a66f 100644 --- a/src/session.rs +++ b/src/session.rs @@ -49,7 +49,7 @@ impl Session { impl PartialEq for Session { fn eq(&self, other: &Session) -> bool { - self.real() == other.real() // && self.participant() == other.participant() + self.real() == other.real() && self.participant() == other.participant() } }