mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
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)
|
||||
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
|
||||
|
||||
def getServerDetails(self):
|
||||
|
|
Loading…
Reference in a new issue