Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/hooks/scripts/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def play_sound(sound_name):
# Note: Using SND_SYNC instead of SND_ASYNC because the script exits immediately
# after this call, which would terminate async playback before it completes
winsound.PlaySound(str(file_path),
winsound.SND_FILENAME | winsound.SND_NODEFAULT)
winsound.SND_FILENAME | winsound.SND_NODEFAULT | winsound.SND_SYNC)
return True
else:
# winsound not available, fail silently
Expand Down