Fix: Add follow_symlinks=True to Python watchdog Observer

This commit is contained in:
Gigi
2025-04-01 10:00:21 +01:00
parent edb4fe5220
commit d26ac41cca

View File

@@ -137,7 +137,7 @@ def main():
# Set up event handler and observer
event_handler = VoiceMemoHandler(voice_memo_dir, transcript_dir, summary_dir)
observer = Observer()
observer = Observer(follow_symlinks=True)
# Watch all directories
observer.schedule(event_handler, str(voice_memo_dir), recursive=False)