Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: replace characters AND links
So when I added the `replace_links` function, I created a bug in the `nofo_import` route. 1a891b4 Here's the bug: ```python cleaned_content = replace_chars(file_content) cleaned_content = replace_links(file_content) # bug is here: this function should be taking "cleaned_content" ``` So the `replace_chars` function was being run but not saved, which meant that we were seeing weird stuff coming back in, primarily where we see this is around the application checkboxes. Small fix to get this working again, although it took a while to find.
- Loading branch information