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
I'm in the process of making Vaadin run on non-servlet based servers ( Play!Framework / Akka-HTTP )
At the moment, the com.vaadin.flow.server.communication.FaviconHandler assumes that the incoming VaadinRequest is a VaadinServletRequest without checking and just casting it.. this results in a ClassCastException if the request is not a ServletRequest.
for the moment, I just implemented my own
createRequestHandlers in the VaadinService which does not load this particular handler. A corresponding check would be nice.
The text was updated successfully, but these errors were encountered:
I'm in the process of making Vaadin run on non-servlet based servers ( Play!Framework / Akka-HTTP )
At the moment, the com.vaadin.flow.server.communication.FaviconHandler assumes that the incoming VaadinRequest is a VaadinServletRequest without checking and just casting it.. this results in a ClassCastException if the request is not a ServletRequest.
for the moment, I just implemented my own
createRequestHandlers in the VaadinService which does not load this particular handler. A corresponding check would be nice.
The text was updated successfully, but these errors were encountered: