feat: PDF lädt Original-URL + blendet Paywall-Overlays per CSS aus

This commit is contained in:
2026-06-12 12:24:06 +02:00
parent c75c488d3b
commit 8877587309
2 changed files with 100 additions and 152 deletions

View File

@@ -81,7 +81,7 @@ export default function PaywallKiller() {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
},
body: JSON.stringify({ archiveUrl: waybackUrl }),
body: JSON.stringify({ archiveUrl: waybackUrl, originalUrl: getTargetUrl() }),
});
if (!res.ok) {
const data = await res.json().catch(() => ({}));