Compare commits

...

2 Commits

Author SHA1 Message Date
6388ca7176 Bump version: 1.2.9 → 1.2.10
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m27s
2025-07-17 17:49:53 +01:00
19bfa3e4d6 another try 2025-07-17 17:49:50 +01:00
3 changed files with 4 additions and 4 deletions

View File

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

View File

@ -1 +1 @@
1.2.9
1.2.10

View File

@ -157,8 +157,8 @@ def vapid_public_key():
# Join the split lines to remove all whitespace and newlines
base64_key = "".join(match.group(1).split())
# Convert to URL-safe base64 for the PushManager API
url_safe_key = base64_key.replace('+', '-').replace('/', '_')
# Convert to URL-safe base64 and remove padding for the PushManager API
url_safe_key = base64_key.replace('+', '-').replace('/', '_').rstrip('=')
return jsonify({"public_key": url_safe_key})