Compare commits

..

No commits in common. "64f0da662bea968f063e73f055c8ebf600e4a748" and "ec928cf63181e923648f9fcef401671bc730d798" have entirely different histories.

3 changed files with 3 additions and 6 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion] [tool.bumpversion]
current_version = "1.3.52" current_version = "1.3.51"
commit = true commit = true
tag = true tag = true
tag_name = "{new_version}" tag_name = "{new_version}"

View File

@ -1 +1 @@
1.3.52 1.3.51

View File

@ -105,10 +105,7 @@
fetch('/vapid-public-key') fetch('/vapid-public-key')
.then(response => { .then(response => {
if (!response.ok) { if (!response.ok) {
return response.text().then(text => { throw new Error('Failed to fetch VAPID public key');
console.error('Failed to fetch VAPID public key. Server response:', text);
throw new Error('Failed to fetch VAPID public key. See server response in logs.');
});
} }
return response.json(); return response.json();
}) })