diff --git a/app.py b/app.py index e16eed8..1627545 100644 --- a/app.py +++ b/app.py @@ -246,7 +246,7 @@ def execute_http_function(user_id, function): return login_manager.unauthorized() if int(current_user.id) != user_id: - return jsonify({'error': 'Function belongs to another user', 'current_user_id': current_user.id, 'user_id': user_id}), 404 + return jsonify({'error': 'Function belongs to another user'}), 404 request_data = { 'method': request.method,