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:
parent
bf59b2bbae
commit
ea5a1a2bed
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue