mirror of https://gitlab.com/bashrc2/epicyon
Separate parameters with semicolons
parent
102eaf3a00
commit
3433c03f0d
|
@ -734,7 +734,7 @@ def _sharesCatalogParams(path: str) -> (bool, float, float, str):
|
||||||
if '?' not in path:
|
if '?' not in path:
|
||||||
return today, minPrice, maxPrice, matchPattern
|
return today, minPrice, maxPrice, matchPattern
|
||||||
args = path.split('?', 1)[1]
|
args = path.split('?', 1)[1]
|
||||||
argList = args.split('?')
|
argList = args.split(';')
|
||||||
for arg in argList:
|
for arg in argList:
|
||||||
if '=' not in arg:
|
if '=' not in arg:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue