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]
current_version = "1.3.52"
current_version = "1.3.51"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.3.52
1.3.51

View File

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