From 920e9633953f358eec5ca54df029acaf3e60636d Mon Sep 17 00:00:00 2001 From: Tagada <36127788+Tagadda@users.noreply.github.com> Date: Thu, 3 Aug 2023 15:42:25 +0200 Subject: [PATCH] convert_app_to_packaging_v2.py: remove full_domain This properties is not used by the core. It's deduced from the fact that there's no path properties. --- tools/packaging_v2/convert_app_to_packaging_v2.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/packaging_v2/convert_app_to_packaging_v2.py b/tools/packaging_v2/convert_app_to_packaging_v2.py index 39a5b44f..27053210 100644 --- a/tools/packaging_v2/convert_app_to_packaging_v2.py +++ b/tools/packaging_v2/convert_app_to_packaging_v2.py @@ -145,9 +145,6 @@ def _convert_v1_manifest_to_v2(app_path): elif manifest["install"]["init_main_permission"].get("default") is True: manifest["install"]["init_main_permission"]["default"] = "all_users" - if "domain" in manifest["install"] and "path" not in manifest["install"]: - manifest["install"]["domain"]["full_domain"] = True - manifest["resources"] = {} sources = convert_app_sources(app_path)