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 7b49341 commit 5ed9864Copy full SHA for 5ed9864
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