mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +03:00
More strict string search regex
This commit is contained in:
parent
5bbbda71a3
commit
9301c50e3b
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ def retrieve_string(app_dir, string, xmlfiles=None):
|
|||
|
||||
string_search = None
|
||||
if string.startswith('@string/'):
|
||||
string_search = re.compile(r'.*"' + string[8:] + '".*?>([^<]+?)<.*').search
|
||||
string_search = re.compile(r'.*name="' + string[8:] + '".*?>([^<]+?)<.*').search
|
||||
elif string.startswith('&') and string.endswith(';'):
|
||||
string_search = re.compile(r'.*<!ENTITY.*' + string[1:-1] + '.*?"([^"]+?)".*>').search
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue