From 0e1a79388600ef1c0f412e5b3422072049ab21b9 Mon Sep 17 00:00:00 2001 From: OniriCorpe <oniricorpe@disroot.org> Date: Wed, 20 Mar 2024 03:16:32 +0100 Subject: [PATCH] Better "ailed to create branchailed to create branch" link: filter by tag, not by name --- store/app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/store/app.py b/store/app.py index a7720ee..ca4cb08 100644 --- a/store/app.py +++ b/store/app.py @@ -366,7 +366,7 @@ def add_to_wishlist(): except exception as e: print("… Failed to create branch ?") print(e) - url = "https://github.com/YunoHost/apps/pulls?q=is%3Apr+is%3Aopen+wishlist" + url = "https://github.com/YunoHost/apps/pulls?q=is%3Apr+is%3Aopen+label%3AWishlist" errormsg = _( "Failed to create the pull request to add the app to the wishlist… Maybe there's already <a href='%(url)s'>a waiting PR for this app</a>? Else, please report the issue to the YunoHost team.", url=url, @@ -473,7 +473,6 @@ def login_using_discourse(): @app.route("/sso_login_callback") def sso_login_callback(): - computed_sig = hmac.new( config["DISCOURSE_SSO_SECRET"].encode(), msg=request.args["sso"].encode(),