Private GIT

Skip to content
Snippets Groups Projects
Commit f41fc794 authored by Ruud's avatar Ruud
Browse files

Don't search full disk when no manage folders are filled. fix #1304

parent 0f789b5b
Branches
Tags
No related merge requests found
...@@ -198,8 +198,11 @@ class Manage(Plugin): ...@@ -198,8 +198,11 @@ class Manage(Plugin):
def directories(self): def directories(self):
try: try:
if self.conf('library', '').strip():
return splitString(self.conf('library', default = ''), '::') return splitString(self.conf('library', default = ''), '::')
except: except:
pass
return [] return []
def scanFilesToLibrary(self, folder = None, files = None): def scanFilesToLibrary(self, folder = None, files = None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment