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')