fix: agent actions

This commit is contained in:
Danny Avila 2024-09-03 12:59:22 -04:00
parent 9a9f993f32
commit 22a1bdbd7a
No known key found for this signature in database
GPG key ID: 2DD9CC89B9B50364
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ router.post('/:agent_id', async (req, res) => {
return res.status(400).json({ message: 'No functions provided' });
}
let metadata = encryptMetadata(_metadata);
let metadata = await encryptMetadata(_metadata);
let { domain } = metadata;
domain = await domainParser(req, domain, true);