From f8f7466d5c97ae380174972573f2b172f31939b2 Mon Sep 17 00:00:00 2001 From: Simon Hartley <170740+scrhartley@users.noreply.github.com> Date: Wed, 19 Mar 2025 06:34:20 +0000 Subject: [PATCH] Fix broken link in SSE extension docs (#3241) --- www/content/extensions/sse.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/content/extensions/sse.md b/www/content/extensions/sse.md index bf1ae2e9..12e36a3f 100644 --- a/www/content/extensions/sse.md +++ b/www/content/extensions/sse.md @@ -10,7 +10,7 @@ your htmx webpage in real-time. SSE is a lightweight alternative to WebSockets that works over existing HTTP connections, so it is easy to use through proxy servers and firewalls. Remember, SSE is a uni-directional service, so you cannot send any messages to an SSE server once the connection has been established. If you need bi-directional communication, then you should consider -using [WebSockets](@web-sockets.md) instead. +using [WebSockets](@/extensions/ws.md) instead. This extension replaces the experimental `hx-sse` attribute built into previous versions of htmx. For help migrating from older versions, see the migration guide at the bottom of this page.