From cca88740c7ba2d3265c4e89f9a6882d65f9db464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 26 Dec 2022 16:39:25 +0100 Subject: [PATCH] Session: restore PartialEq impl as it was MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- src/session.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() } }