From e14f2a3c41e2c4fdb3c7d0325dbafcb2a04b23c7 Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Thu, 9 Sep 2021 14:39:14 -0700 Subject: [PATCH] Fix get profiles flask request (#1246) --- squeaknode/admin/webapp/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/squeaknode/admin/webapp/app.py b/squeaknode/admin/webapp/app.py index e57aaedc..e1646806 100644 --- a/squeaknode/admin/webapp/app.py +++ b/squeaknode/admin/webapp/app.py @@ -365,7 +365,7 @@ def create_app(handler, username, password): def getprofiles(): return handle_request( squeak_admin_pb2.GetProfilesRequest(), - handler.handle_get_signing_profiles, + handler.handle_get_profiles, ) @app.route("/getsigningprofiles", methods=["POST"])