diff --git a/core/http/app.go b/core/http/app.go index a3e4559d..91500c97 100644 --- a/core/http/app.go +++ b/core/http/app.go @@ -90,7 +90,7 @@ func API(application *application.Application) (*fiber.App, error) { router.Use(middleware.StripPathPrefix()) - router.Use(func(c *fiber.Ctx) error { + router.Use("/v1/realtime", func(c *fiber.Ctx) error { if websocket.IsWebSocketUpgrade(c) { // Returns true if the client requested upgrade to the WebSocket protocol return c.Next()