We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b7213 commit 0450ab3Copy full SHA for 0450ab3
vdirsyncer/storage/filesystem.py
@@ -60,7 +60,7 @@ async def discover(cls, path, **kwargs):
60
61
@classmethod
62
def _validate_collection(cls, path):
63
- if not os.path.isdir(path):
+ if not os.path.isdir(path) or os.path.islink(path):
64
return False
65
if os.path.basename(path).startswith("."):
66
0 commit comments