diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Revision history for ema
 
+## 0.8.2.0 (2022-08-28)
+
+- Bug fixes
+  - Fix live server redirecting static assets to wrong links [\#138](https://github.com/EmaApps/ema/issues/138)
+
 ## 0.8.0.0 (2022-08-19)
 
 This releases brings a significant rewrite of Ema. If you choose to upgrade your apps from 0.6, see https://ema.srid.ca/start/upgrade for guidance.
diff --git a/ema.cabal b/ema.cabal
--- a/ema.cabal
+++ b/ema.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.4
 name:               ema
-version:            0.8.0.0
+version:            0.8.2.0
 license:            AGPL-3.0-only
 copyright:          2021 Sridhar Ratnakumar
 maintainer:         srid@srid.ca
diff --git a/src/Ema/Server.hs b/src/Ema/Server.hs
--- a/src/Ema/Server.hs
+++ b/src/Ema/Server.hs
@@ -111,15 +111,13 @@
                       liftIO $ WS.sendTextData conn $ emaErrorHtmlResponse decodeRouteNothingMsg
                     Right (Just r) -> do
                       renderCatchingErrors s r >>= \case
-                        AssetStatic staticPath ->
-                          -- HACK: Websocket client should check for REDIRECT prefix.
-                          -- Not bothering with JSON to avoid having to JSON parse every HTML dump.
-                          liftIO $ WS.sendTextData conn $ "REDIRECT " <> toText staticPath
                         AssetGenerated Html html ->
                           liftIO $ WS.sendTextData conn $ html <> toLazy wsClientHtml
+                        -- HACK: We expect the websocket client should check for REDIRECT prefix.
+                        -- Not bothering with JSON response to avoid having to JSON parse every HTML dump.
+                        AssetStatic _staticPath ->
+                          liftIO $ WS.sendTextData conn $ "REDIRECT " <> toText (review (fromPrism_ $ enc s) r)
                         AssetGenerated Other _s ->
-                          -- HACK: Websocket client should check for REDIRECT prefix.
-                          -- Not bothering with JSON to avoid having to JSON parse every HTML dump.
                           liftIO $ WS.sendTextData conn $ "REDIRECT " <> toText (review (fromPrism_ $ enc s) r)
                       log LevelDebug $ " ~~> " <> show r
                 loop = flip runLoggingT logger $ do
