From b52b3f980476c9f914d2ef8166d2cae281360764 Mon Sep 17 00:00:00 2001 From: Christopher Date: Wed, 28 Jan 2026 07:55:38 -0800 Subject: [PATCH] Remove lastSeenAt from handle update in chat API The lastSeenAt field is no longer set when updating the handle in the chat receive API route. This may be due to a change in how user activity is tracked or to simplify the update payload. --- src/app/api/chat/receive/route.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/api/chat/receive/route.ts b/src/app/api/chat/receive/route.ts index be83141..690c8d3 100644 --- a/src/app/api/chat/receive/route.ts +++ b/src/app/api/chat/receive/route.ts @@ -102,8 +102,7 @@ export async function POST(request: NextRequest) { target: handleRegistry.handle, set: { did: senderDid, - nodeDomain: senderNodeDomain, - lastSeenAt: new Date() + nodeDomain: senderNodeDomain } });