Commit 62f42950 authored by mitshel's avatar mitshel
Browse files

В модуле sopdscan.py в вызове функции os.walk применен параметр followlinks=True

для следования символическим ссылкам
parent be0ad97a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ class opdsScanner:
        self.opdsdb.openDB()
        self.opdsdb.avail_check_prepare()

        for full_path, dirs, files in os.walk(self.cfg.ROOT_LIB):
        for full_path, dirs, files in os.walk(self.cfg.ROOT_LIB, followlinks=True):
            for name in files:
                file=os.path.join(full_path,name)
                (n,e)=os.path.splitext(name)