From 6a0824bc4f929a945f8b5f40132c3bd2ad92c7e7 Mon Sep 17 00:00:00 2001 From: Justin Lam <4069123+ninth-dev@users.noreply.github.com> Date: Tue, 2 Jan 2024 18:31:27 +1100 Subject: [PATCH] fix: new doctor version was not handled correctly (#113) --- core/handle_execute_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/handle_execute_client.py b/core/handle_execute_client.py index 9752288..b911ac9 100644 --- a/core/handle_execute_client.py +++ b/core/handle_execute_client.py @@ -103,7 +103,7 @@ def parse_explanations(explanations) -> str: header = content.get('header') markdown = "# {} \n\n".format(content.get('title')) - if doctor_version == 4: + if doctor_version >= 4: header_fields = [ 'buildTargetDescription', 'serverInfo',