allow option to select direct paths at startup
This commit is contained in:
parent
2d636d5b2d
commit
dfedf545ba
1 changed files with 5 additions and 0 deletions
|
@ -115,6 +115,11 @@ class ConnectionManager():
|
||||||
self.logMsg("User option to direct stream music library.", 1)
|
self.logMsg("User option to direct stream music library.", 1)
|
||||||
utils.settings('directstreammusic', "true")
|
utils.settings('directstreammusic', "true")
|
||||||
|
|
||||||
|
directPaths = xbmcgui.Dialog().yesno("Direct Paths", "Use direct paths?")
|
||||||
|
if directPaths:
|
||||||
|
self.logMsg("User opted to use direct paths.", 1)
|
||||||
|
utils.settings('useDirectPaths', "true")
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
def getServerDetails(self):
|
def getServerDetails(self):
|
||||||
|
|
Loading…
Reference in a new issue