From ea5a1a2bededacc22fa196483469619af79ef498 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Wed, 3 Sep 2025 11:04:44 +0500 Subject: [PATCH] fix: [BUG] If `compress` and `force_static_request_urls` patches are applied, app won't load Fixes #9 --- patches/compress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/compress.py b/patches/compress.py index bdf0635..a3280c7 100644 --- a/patches/compress.py +++ b/patches/compress.py @@ -47,7 +47,7 @@ def remove_debug_lines(): file_content = get_smali_lines(file_path) new_content = [] for line in file_content: - if line.find(".line") >= 0 or line.find(".source") >= 0: + if line.find(".line") >= 0: continue new_content.append(line) save_smali_lines(file_path, new_content)