mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
add url quote to dirName. fixes #270
This commit is contained in:
parent
db9b653361
commit
1522d61492
2 changed files with 2 additions and 1 deletions
|
@ -280,7 +280,7 @@ def process(dirName, nzbName=None, status=0, clientAgent = "manual", download_id
|
|||
if remoteCPS == 1:
|
||||
command = command + "/?downloader=" + clientAgent + "&download_id=" + download_id
|
||||
else:
|
||||
command = command + "/?media_folder=" + dirName + "&downloader=" + clientAgent + "&download_id=" + download_id
|
||||
command = command + "/?media_folder=" + urllib.quote(dirName) + "&downloader=" + clientAgent + "&download_id=" + download_id
|
||||
|
||||
url = baseURL + command
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ Change default "wait_for" to 5 mins. CouchPotato can take more than 2 minutes to
|
|||
Added SickBeard "wait_for" to bw customizable to prevent unwanted timeouts.
|
||||
Fixed ascii conversion of directory name.
|
||||
Added list of common sample ids and a way to set deletion of All media files less than the sample file size limit.
|
||||
Added urlquote to dirName for CouchPotato (allows special characters in directory name)
|
||||
|
||||
Impacts NZBs
|
||||
Fix Error with manual run of nzbToMedia
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue