Compare commits

...

2 Commits

Author SHA1 Message Date
64f0da662b Bump version: 1.3.51 → 1.3.52
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m24s
2025-07-18 17:19:16 +01:00
472098f9f1 show me the error 2025-07-18 17:19:14 +01:00
3 changed files with 6 additions and 3 deletions

View File

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

View File

@ -1 +1 @@
1.3.51 1.3.52

View File

@ -105,7 +105,10 @@
fetch('/vapid-public-key') fetch('/vapid-public-key')
.then(response => { .then(response => {
if (!response.ok) { if (!response.ok) {
throw new Error('Failed to fetch VAPID public key'); return response.text().then(text => {
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();
}) })