From 8a0cf61637a327c16c208f29fccea00a4f2a2dc9 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. --- packaging_v2/convert_app_to_packaging_v2.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/packaging_v2/convert_app_to_packaging_v2.py b/packaging_v2/convert_app_to_packaging_v2.py index 39a5b44..2705321 100644 --- a/packaging_v2/convert_app_to_packaging_v2.py +++ b/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)