From 4538a7e470ee5c874b6034a6b5105f89795d606f Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Tue, 2 Jul 2019 19:35:59 -0500 Subject: [PATCH] undo replace mistake --- onionr/httpapi/miscclientapi/endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/httpapi/miscclientapi/endpoints.py b/onionr/httpapi/miscclientapi/endpoints.py index 79037232..8cbdd553 100644 --- a/onionr/httpapi/miscclientapi/endpoints.py +++ b/onionr/httpapi/miscclientapi/endpoints.py @@ -82,7 +82,7 @@ class PrivateEndpoints: client_api.publicAPI.hideBlocks.remove(name) return Response("removed") else: - client_api.publicAPI.hideBlocks.private_endpoints_bpend(name) + client_api.publicAPI.hideBlocks.append(name) return Response("added") @private_endpoints_bp.route('/shutdown')