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.
This commit is contained in:
Christopher
2026-01-28 07:55:38 -08:00
parent ced2b958ed
commit b52b3f9804
+1 -2
View File
@@ -102,8 +102,7 @@ export async function POST(request: NextRequest) {
target: handleRegistry.handle, target: handleRegistry.handle,
set: { set: {
did: senderDid, did: senderDid,
nodeDomain: senderNodeDomain, nodeDomain: senderNodeDomain
lastSeenAt: new Date()
} }
}); });