diff --git a/custom_components/mikrotik_router/update.py b/custom_components/mikrotik_router/update.py index cb8d007..55df8b7 100644 --- a/custom_components/mikrotik_router/update.py +++ b/custom_components/mikrotik_router/update.py @@ -97,7 +97,7 @@ class MikrotikRouterOSUpdate(MikrotikEntity, UpdateEntity): ) if response.status_code == 200: - return response.text.replace(chr(10), "
") + return response.text.replace(chr(10), "
").replace("*) ", "- ") except Exception as e: _LOGGER.warning("Failed to download release notes (%s)", e)