From 2fe4320db6ea95a93a053bd2e5741c6dad1c7123 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 25 Aug 2025 12:44:47 -0400 Subject: [PATCH 1/2] use self to call filehelpers instead of static --- app/classes/shared/import_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/classes/shared/import_helper.py b/app/classes/shared/import_helper.py index 5e05ded8..86a82906 100644 --- a/app/classes/shared/import_helper.py +++ b/app/classes/shared/import_helper.py @@ -244,7 +244,7 @@ class ImportHelpers: unzip_path = self.helper.wtol_path(file_path) # unzips archive that was downloaded. - FileHelpers.unzip_file(unzip_path) + self.file_helper.unzip_file(unzip_path) # adjusts permissions for execution if os is not windows if not self.helper.is_os_windows(): -- GitLab From 5c720d521061fabfe84255573d26f39d15f70ffe Mon Sep 17 00:00:00 2001 From: Zedifus Date: Sun, 31 Aug 2025 22:14:47 +0100 Subject: [PATCH 2/2] Upgrade changelog !884 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfbd1e9d..5a7438e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### New features TBD ### Bug fixes -TBD +- Bedrock Builder | Utilize self call instead of static call for unzipping bedrock archives ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/884)) ### Tweaks TBD ### Lang -- GitLab