Add short links with song title in OG preview

- Re-enable /api/share for short links (/s/abc123)
- Title shows as "Song Name - WARIO SYNTH"
- Description: "I made this in WARIO SYNTH"
- Falls back to long URL if short link fails

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
b1rdmania
2025-12-29 13:25:27 +00:00
parent 853e274a9d
commit 1041be46f3
2 changed files with 41 additions and 15 deletions
+1 -1
View File
@@ -221,7 +221,7 @@ app.get('/s/:code', async (req, res) => {
const sharedTitle = (payload.title || '').trim();
const ogTitle = sharedTitle ? `${sharedTitle} - WARIO SYNTH` : 'WARIO SYNTH';
const ogDescription = 'Tap to play this Gameboy tune';
const ogDescription = sharedTitle ? 'I made this in WARIO SYNTH' : 'Tap to play this Gameboy tune';
const html = `<!doctype html>
<html lang="en">