We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some places cannot be loaded and also fail navigation in the search results pagination.
Places with descriptions (table: place_description, column: content) containing an unbalanced parenthesis cause a Python regex exception:
Python failing at: file "./app/api/place_description/facade.py", line 62 Python code failing: res['attributes']['content'] = re.sub(match, rewrite_link_target(insee_code, label), res['attributes']['content']) Python failing with error: source.error("unbalanced parenthesis")
Example:
loading place P88740001 returns empty screen and XHR error:
This is due to the following description:
The unbalanced closing bracket within the tag fails regex.
The text was updated successfully, but these errors were encountered:
vicpsl
No branches or pull requests
Some places cannot be loaded and also fail navigation in the search results pagination.
Places with descriptions (table: place_description, column: content) containing an unbalanced parenthesis cause a Python regex exception:
Python failing at: file "./app/api/place_description/facade.py", line 62
Python code failing: res['attributes']['content'] = re.sub(match, rewrite_link_target(insee_code, label), res['attributes']['content'])
Python failing with error: source.error("unbalanced parenthesis")
Example:
loading place P88740001 returns empty screen and XHR error:
This is due to the following description:
The unbalanced closing bracket within the tag fails regex.
The text was updated successfully, but these errors were encountered: