Don't allow spaces in devicename
This commit is contained in:
parent
6caa759ce1
commit
2e5249ca4f
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ DEVICENAME = DEVICENAME.replace("?", "")
|
|||
DEVICENAME = DEVICENAME.replace('|', "")
|
||||
DEVICENAME = DEVICENAME.replace('(', "")
|
||||
DEVICENAME = DEVICENAME.replace(')', "")
|
||||
DEVICENAME = DEVICENAME.strip()
|
||||
DEVICENAME = DEVICENAME.replace(' ', "")
|
||||
|
||||
COMPANION_PORT = int(_ADDON.getSetting('companionPort'))
|
||||
|
||||
|
|
Loading…
Reference in a new issue