Skip to content

Commit 2a458c4

Browse files
authored
Merge branch 'main' into patch-1
2 parents 6ff13b3 + aa3c6fa commit 2a458c4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

librespot/crypto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def receive_encoded(self, connection: Session.ConnectionHolder) -> Packet:
6565
if mac != expected_mac:
6666
raise RuntimeError()
6767
return Packet(cmd, payload_bytes)
68-
except IndexError:
68+
except (IndexError, OSError):
6969
raise RuntimeError("Failed to receive packet")
7070

7171

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defusedxml>=0.7.1
22
protobuf==3.20.1
3-
pycryptodomex>=3.21.0
3+
pycryptodomex>=3.22.0
44
pyogg>=0.6.14a.1
55
requests>=2.32.3
66
websocket-client>=1.8.0
7-
zeroconf>=0.136.0
7+
zeroconf>=0.146.4

0 commit comments

Comments
 (0)