From 42faf0c3a0e17500cb51d586c82aa28244869197 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Fri, 27 May 2022 15:35:28 -0400 Subject: [PATCH] device: consult polling rate feature for polling rate --- lib/logitech_receiver/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logitech_receiver/device.py b/lib/logitech_receiver/device.py index 4dd550c3..2db0577e 100644 --- a/lib/logitech_receiver/device.py +++ b/lib/logitech_receiver/device.py @@ -275,7 +275,7 @@ class Device: def polling_rate(self): if not self._polling_rate: self.update_pairing_information() - if not self._polling_rate and self.protocol >= 2.0: + if self.protocol >= 2.0: rate = _hidpp20.get_polling_rate(self) self._polling_rate = rate if rate else self._polling_rate return self._polling_rate