Skip to content

Now Showing v2.3.2

Choose a tag to compare

@rusty4444 rusty4444 released this 19 May 00:00

Fixed

  • All requests returning :ok — the SSE /api/events handler was registered with
    app.use(eventBus.eventsRoute) which caught every incoming request on the server.
    The function wrote :ok and never called next(), so Express never reached the
    static middleware. No static files were served: not now_showing.html, not the
    font files, not now_showing.config.js. Changed to
    app.get('/api/events', eventBus.eventsRoute) so it only matches GET /api/events.