1
0
Fork 0
mirror of https://github.com/Radiquum/anixart-patcher.git synced 2025-09-03 17:55:33 +05:00

fix: [BUG] If compress and force_static_request_urls patches are applied, app won't load

Fixes #9
This commit is contained in:
Kentai Radiquum 2025-09-03 11:04:44 +05:00
parent bf59b2bbae
commit ea5a1a2bed
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -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)