Fix private calls

This commit is contained in:
2026-05-17 15:14:52 +02:00
parent 0f6cb3ee77
commit e769a6ee4a
71 changed files with 5821 additions and 349 deletions

View File

@@ -196,9 +196,8 @@ router.get('/link-metadata', async (req, res) => {
const cached = metadataCache.get(url);
if (cached) {
const { cachedAt, ...metadata } = cached;
const { cachedAt: _cachedAt, ...metadata } = cached;
console.log(`[Link Metadata] Cache hit for ${url} (cached at ${new Date(cachedAt).toISOString()})`);
return res.json(metadata);
}