Hi,

I'am new to vibe.d and are playing around with the chat-server tutorial.
My client uses angular2 and I notice a strange behavior:

The /ws or /ws/ websocket endpoint returns a 302. I reduced the code, so
that no addional parameters are needed, but the behavior resists. If I
define the route explizit, everything works as aspected:

auto router = new URLRouter;
auto ws = new WebChat;
router.registerWebInterface(ws);
router.get("/ws2/", handleWebSockets(&ws.getWs));

The new /ws2/ endpoint works well.

What am I doing wrong?

Regards

Markus