You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 7, 2024. It is now read-only.
I have multiple websockets handlers and when defining the routes, I can indeed only access the defined routes the rest will return 404 but for some reason only the last defined controller is called.. (Can check by dumping on the onOpen handler)
WebSocketsRouter::webSocket('ws/site', \App\Http\WebSocket\Site::class); //The admin controller is used when accessing /ws/site
WebSocketsRouter::webSocket('ws/admin', \App\Http\WebSocket\Admin::class);
Am I missing something or is there a huge bug there?