From c5db0a84a825f97da38d405653e0dae4b4e04850 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=93=E3=81=86=E3=81=8B=E3=82=89?= Date: Wed, 20 Oct 2021 12:09:17 +0900 Subject: [PATCH] Fix NoopAudioDecrypt --- librespot/structure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librespot/structure.py b/librespot/structure.py index f74da6b..e20c417 100644 --- a/librespot/structure.py +++ b/librespot/structure.py @@ -64,7 +64,7 @@ class MessageListener: class NoopAudioDecrypt(AudioDecrypt): def decrypt_chunk(self, chunk_index: int, buffer: bytes): - pass + return buffer def decrypt_time_ms(self): return 0