Compare commits

..

No commits in common. "6388ca7176c23c0f43f56ebebb4bded2966c6bff" and "ac79f2637353aa43de6433219b9fd9dc7e18b966" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

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

View File

@ -1 +1 @@
1.2.10 1.2.9

View File

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