diff --git a/sse_starlette/sse.py b/sse_starlette/sse.py index cb901c8..ab93121 100644 --- a/sse_starlette/sse.py +++ b/sse_starlette/sse.py @@ -147,7 +147,7 @@ def ensure_bytes(data: Union[bytes, dict, ServerSentEvent, Any], sep: str) -> by class EventSourceResponse(Response): """Implements the ServerSentEvent Protocol: - https://www.w3.org/TR/2009/WD-eventsource-20090421/ + https://html.spec.whatwg.org/multipage/server-sent-events.html Responses must not be compressed by middleware in order to work. implementation based on Starlette StreamingResponse