mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
amodem: fix str/bytes handling
This commit is contained in:
parent
30069324d5
commit
1fa6b3fd31
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ class Plugin(BasePlugin):
|
|||
amodem.main.send(config=self.modem_config, src=src, dst=dst)
|
||||
|
||||
print_msg('Sending:', repr(blob))
|
||||
blob = zlib.compress(blob)
|
||||
blob = zlib.compress(blob.encode('ascii'))
|
||||
|
||||
kbps = self.modem_config.modem_bps / 1e3
|
||||
msg = 'Sending to Audio MODEM ({0:.1f} kbps)...'.format(kbps)
|
||||
|
@ -119,7 +119,7 @@ class Plugin(BasePlugin):
|
|||
|
||||
def on_finished(blob):
|
||||
if blob:
|
||||
blob = zlib.decompress(blob)
|
||||
blob = zlib.decompress(blob).decode('ascii')
|
||||
print_msg('Received:', repr(blob))
|
||||
parent.setText(blob)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue