From a05a39f6d6027a746b97e6564883f877f7ded1bb 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 39a5b44..2705321 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)