From 4de9033b844ef0265175764f55667429c50e00af Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Fri, 27 Oct 2023 09:46:14 -0400 Subject: [PATCH] fix: account not updated --- src/model/helpers.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/model/helpers.rs b/src/model/helpers.rs index abefeaa9..cf1578b1 100644 --- a/src/model/helpers.rs +++ b/src/model/helpers.rs @@ -433,6 +433,8 @@ pub async fn upsert_subscription_watcher( ) VALUES ($1, $2, $3, $4, $5) ON CONFLICT (did_key) DO UPDATE SET + account=$1, + project=$2, sym_key=$4, expiry=$5, updated_at=now()