Compare commits

..

2 Commits

Author SHA1 Message Date
0d056fa5de Bump version: 1.3.10 → 1.3.11
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 3m22s
2025-07-17 08:35:30 +01:00
424d58c4cb pwa change 2025-07-17 08:35:27 +01:00
3 changed files with 2 additions and 4 deletions

View File

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

View File

@ -1 +1 @@
1.3.10
1.3.11

2
app.py
View File

@ -162,8 +162,6 @@ def user_accounts() -> Union[Response, str]:
@app.route("/share", methods=["GET"])
def share() -> Response:
"""Handles shared text from PWA."""
if not session.get("logged_in"):
return redirect(url_for("index"))
shared_text = request.args.get("text")
return redirect(url_for("add_account", shared_text=shared_text))