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
Here it's checking if window.location.protocol == 'https'. However, the protocol property includes the colon, and returns 'https:'. This check is always false and so always reverts to ws for the protocol set.
There appears to be a bug in ServerBuilder:
gwt-rpc/endpoint-client-gwt/src/main/java/org/gwtproject/rpc/gwt/client/impl/ServerBuilderImpl.java
Line 35 in 4f30df7
Here it's checking if
window.location.protocol == 'https'
. However, theprotocol
property includes the colon, and returns 'https:'. This check is always false and so always reverts tows
for the protocol set.See MDN page about location.protocol: https://developer.mozilla.org/en-US/docs/Web/API/Location/protocol
The text was updated successfully, but these errors were encountered: