Index: src/ammosreader/AmmosAudioSocketReader.py
===================================================================
--- src/ammosreader/AmmosAudioSocketReader.py	(revision a574a936985dfb098140f7a8dc23cf30258b77fe)
+++ src/ammosreader/AmmosAudioSocketReader.py	(revision 6d3518304b3285eb7fd7ee439cdc562edce888c1)
@@ -115,5 +115,5 @@
                     #    byte_array_header.append(self.__socket.recv(44 - len(b''.join(byte_array_header))))
 
-                    ammos_extended_audio_data_header = AmmosExtendedAudioDataHeader.from_bytes(b''.join(byte_array_header))
+                    ammos_extended_audio_data_header = AmmosExtendedAudioDataHeader.from_bytes(byte_array_header)
                     if self.DEBUG_MODE:
                         print(ammos_extended_audio_data_header.sample_count, ammos_extended_audio_data_header.channel_count, ammos_extended_audio_data_header.sample_size)
@@ -133,5 +133,5 @@
                     #    byte_array_header.append(self.__socket.recv(36 - len(b''.join(byte_array_header))))
 
-                    ammos_audio_data_header = AmmosAudioDataHeader.from_bytes(b''.join(byte_array_header))
+                    ammos_audio_data_header = AmmosAudioDataHeader.from_bytes(byte_array_header)
                     if self.DEBUG_MODE:
                         print(ammos_audio_data_header.sample_count, ammos_audio_data_header.channel_count, ammos_audio_data_header.sample_size)
