From 30469fda6612eb316749b4c6e06b009bfc2c393f Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 16 Apr 2026 18:00:43 -0700 Subject: [PATCH] revert "fix: prevent writing to nonexistent firestore docs" This reverts commit 46170eb5d38090f770faffa895425ffc71f5bcf3. --- go/internal/handler/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/internal/handler/handler.go b/go/internal/handler/handler.go index 86d9488..51a8970 100644 --- a/go/internal/handler/handler.go +++ b/go/internal/handler/handler.go @@ -1151,7 +1151,7 @@ func (h *Handler) HandleLivekitWebhook(w http.ResponseWriter, r *http.Request) { _, err = docRef.Update(ctx, []firestore.Update{ {Path: "huddle_active_participants", Value: participantIds}, - }, firestore.Exists) + }) if err != nil { slog.Error("failed to update huddle participants in firestore", "error", err, "path", docPath) }