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:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user