mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 18:47:09 -07:00
Merge pull request #1625 from TheHolyRoger/patch-3
Don't replace apostrophes in qBittorrent input_name
This commit is contained in:
commit
81895afd3f
1 changed files with 5 additions and 1 deletions
|
@ -127,7 +127,11 @@ def parse_qbittorrent(args):
|
|||
except Exception:
|
||||
input_directory = ''
|
||||
try:
|
||||
input_name = cur_input[1].replace('\'', '')
|
||||
input_name = cur_input[1]
|
||||
if input_name[0] == '\'':
|
||||
input_name = input_name[1:]
|
||||
if input_name[-1] == '\'':
|
||||
input_name = input_name[:-1]
|
||||
except Exception:
|
||||
input_name = ''
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue