diff --git a/bookwyrm/views/status.py b/bookwyrm/views/status.py index fe1dfda13..b58e4941e 100644 --- a/bookwyrm/views/status.py +++ b/bookwyrm/views/status.py @@ -155,7 +155,7 @@ def format_links(content): """detect and format links""" validator = URLValidator() formatted_content = "" - split_content = content.split() + split_content = content.split(" ") for index, potential_link in enumerate(split_content): wrapped = _wrapped(potential_link)