mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
common: discard wrapping quotes in strings
Fixes auto names that shouldn't have wrapping quotes like '"PassDroid"' instead of just 'PassDroid'.
This commit is contained in:
parent
96f49f2a9e
commit
5e988eb84d
1 changed files with 1 additions and 1 deletions
|
@ -807,7 +807,7 @@ def retrieve_string(app_dir, string, xmlfiles=None):
|
||||||
|
|
||||||
string_search = None
|
string_search = None
|
||||||
if string.startswith('@string/'):
|
if string.startswith('@string/'):
|
||||||
string_search = re.compile(r'.*name="' + string[8:] + '".*?>([^<]+?)<.*').search
|
string_search = re.compile(r'.*name="' + string[8:] + '".*?>"?([^<]+?)"?<.*').search
|
||||||
elif string.startswith('&') and string.endswith(';'):
|
elif string.startswith('&') and string.endswith(';'):
|
||||||
string_search = re.compile(r'.*<!ENTITY.*' + string[1:-1] + '.*?"([^"]+?)".*>').search
|
string_search = re.compile(r'.*<!ENTITY.*' + string[1:-1] + '.*?"([^"]+?)".*>').search
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue