diff --git a/TODO.md b/TODO.md index e963ea3e..357cdfde 100644 --- a/TODO.md +++ b/TODO.md @@ -38,3 +38,7 @@ - On sync, check messages API, if a limited sync timeline was received - Graphic bug when resizing window vertically for side pane? + +- Verify E2E working + +- Multiaccount aliases diff --git a/harmonyqml/backend/html_filter.py b/harmonyqml/backend/html_filter.py index ec3cc546..9fa019f5 100644 --- a/harmonyqml/backend/html_filter.py +++ b/harmonyqml/backend/html_filter.py @@ -27,13 +27,6 @@ class HtmlFilter(QObject): sanitizer.normalize_overall_whitespace = lambda html: html sanitizer.normalize_whitespace_in_text_or_tail = lambda el: el - # See FIXME note in sanitizer_settings - autolink_func = sanitizer.lxml.html.clean.autolink - sanitizer.lxml.html.clean.autolink = \ - lambda el, **kw: autolink_func( - el, **self.sanitizer_settings["autolink"] - ) - # Prevent custom attributes from being removed sanitizer.lxml.html.clean.Cleaner.safe_attrs |= \ self.sanitizer_settings["attributes"]["font"]