Made cli not use queue as it's sequential anyway
This commit is contained in:
parent
613c1aebd3
commit
60c16571e3
|
@ -35,4 +35,9 @@ def login():
|
||||||
|
|
||||||
|
|
||||||
def downloadLink(url, settings, bitrate=None):
|
def downloadLink(url, settings, bitrate=None):
|
||||||
addToQueue(dz, sp, url, settings, bitrate)
|
for link in url:
|
||||||
|
if ';' in link:
|
||||||
|
for l in link.split(";"):
|
||||||
|
addToQueue(dz, sp, l, settings, bitrate)
|
||||||
|
else:
|
||||||
|
addToQueue(dz, sp, link, settings, bitrate)
|
||||||
|
|
Loading…
Reference in New Issue