Ready for 1.1.5-rc.2. Patching an api bug.

This commit is contained in:
charlesgauthereau
2025-12-21 11:57:07 +01:00
parent b8442803d9
commit 428782e8a4
+3 -2
View File
@@ -66,10 +66,11 @@ export async function handleDatabases(body: Body, agent: Agent, lastContact: Dat
const [databaseUpdated] = await dbClient
.update(drizzleDb.schemas.database)
.set({
.set(withUpdatedAt({
name: db.name,
agentId: agent.id,
lastContact: lastContact
})
}))
.where(eq(drizzleDb.schemas.database.id, existingDatabase.id))
.returning();