soundd: narrow custom clip fallback errors

Original PR: #116 by @1454
This commit is contained in:
1454
2026-09-03 15:07:26 -05:00
committed by firestar5683
parent 509e6876f1
commit 02e0f1ec9a
+1 -1
View File
@@ -212,7 +212,7 @@ class Soundd:
for path in self._sound_candidates(filename):
try:
sound_data = self._read_sound(path)
except Exception:
except (OSError, EOFError, ValueError, wave.Error):
cloudlog.exception(f"soundd: failed to load {path}")
continue
if sound_data is not None: