mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 17:01:34 +00:00
print unused parameters in URI
This commit is contained in:
parent
c3f74d4500
commit
1c75dae159
1 changed files with 3 additions and 1 deletions
|
@ -789,8 +789,10 @@ if __name__ == '__main__':
|
||||||
label = ''
|
label = ''
|
||||||
for p in params:
|
for p in params:
|
||||||
k,v = p.split('=')
|
k,v = p.split('=')
|
||||||
|
v = urldecode(v)
|
||||||
if k=='amount': amount = v
|
if k=='amount': amount = v
|
||||||
if k=='label': label = urldecode(v)
|
elif k=='label': label = v
|
||||||
|
else: print k,v
|
||||||
|
|
||||||
gui.set_send_tab(address, amount, label)
|
gui.set_send_tab(address, amount, label)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue