Add fix for value error in embedding

This commit is contained in:
Nicolas Mowen
2026-03-01 18:00:29 -07:00
parent 6139e18df7
commit 9448af3f83
+4 -1
View File
@@ -679,4 +679,7 @@ class EmbeddingMaintainer(threading.Thread):
if not self.config.semantic_search.enabled:
return
self.embeddings.embed_thumbnail(event_id, thumbnail)
try:
self.embeddings.embed_thumbnail(event_id, thumbnail)
except ValueError:
logger.warning(f"Failed to embed thumbnail for event {event_id}")