From be26aa63c36d6d7239a44abf1887962cd7b3c047 Mon Sep 17 00:00:00 2001 From: Matt Carey Date: Sat, 7 Dec 2019 01:28:36 -0500 Subject: [PATCH] Fix typo `xsalsa20_poly1305_suffx` -> `xsalsa20_poly1305_suffix` --- disco/voice/udp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/voice/udp.py b/disco/voice/udp.py index c3fc05c..8b32080 100644 --- a/disco/voice/udp.py +++ b/disco/voice/udp.py @@ -234,7 +234,7 @@ class UDPVoiceClient(LoggingClass): if self.vc.mode == 'xsalsa20_poly1305_lite': nonce[:4] = data[-4:] data = data[:-4] - elif self.vc.mode == 'xsalsa20_poly1305_suffx': + elif self.vc.mode == 'xsalsa20_poly1305_suffix': nonce[:24] = data[-24:] data = data[:-24] elif self.vc.mode == 'xsalsa20_poly1305':