mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-22 20:59:27 +00:00
Fix for type errors with custom host/port
This commit is contained in:
@@ -33,8 +33,8 @@ def startmb(forcemb=False):
|
||||
sleepytime = 1
|
||||
elif headphones.MIRROR == "custom":
|
||||
mbhost = headphones.CUSTOMHOST
|
||||
mbport = headphones.CUSTOMPORT
|
||||
sleepytime = headphones.CUSTOMSLEEP
|
||||
mbport = int(headphones.CUSTOMPORT)
|
||||
sleepytime = int(headphones.CUSTOMSLEEP)
|
||||
elif headphones.MIRROR == "headphones":
|
||||
mbhost = "178.63.142.150"
|
||||
mbport = 8181
|
||||
|
||||
Reference in New Issue
Block a user