Skip to content

Commit c5db0a8

Browse files
authored
Fix NoopAudioDecrypt
1 parent 1cb4be6 commit c5db0a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

librespot/structure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def on_message(self, uri: str, headers: typing.Dict[str, str],
6464

6565
class NoopAudioDecrypt(AudioDecrypt):
6666
def decrypt_chunk(self, chunk_index: int, buffer: bytes):
67-
pass
67+
return buffer
6868

6969
def decrypt_time_ms(self):
7070
return 0

0 commit comments

Comments
 (0)