umlaut fix
This commit is contained in:
@@ -105,7 +105,7 @@ class CommentSystem {
|
||||
try {
|
||||
// Decode Base64 for safe template transfer
|
||||
const raw = dataEl.textContent.trim();
|
||||
const json = atob(raw);
|
||||
const json = new TextDecoder().decode(Uint8Array.from(atob(raw), c => c.charCodeAt(0)));
|
||||
const comments = JSON.parse(json);
|
||||
|
||||
const subEl = document.getElementById('initial-subscription');
|
||||
|
||||
Reference in New Issue
Block a user