Session: restore PartialEq impl as it was
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
5239a19871
commit
cca88740c7
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue