mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
parse_URI: utf8 decode
This commit is contained in:
parent
5e41c99d8d
commit
0f3c5ad4b1
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ def parse_URI(uri):
|
|||
else:
|
||||
amount = Decimal(am) * 100000000
|
||||
if 'message' in pq:
|
||||
message = pq['message'][0]
|
||||
message = pq['message'][0].decode('utf8')
|
||||
if 'label' in pq:
|
||||
label = pq['label'][0]
|
||||
if 'r' in pq:
|
||||
|
|
Loading…
Add table
Reference in a new issue