We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3664706 commit a7c4d6cCopy full SHA for a7c4d6c
docs/source/about/changelog.rst
@@ -23,6 +23,14 @@ Changed:
23
- :pull:`701`
24
25
26
+0.37.2
27
+------
28
+
29
+Fixed:
30
31
+- A typo caused IDOM to use the insecure `ws` web-socket protocol on pages loaded with `https` instead of the secure `wss` protocol - :pull:`716`
32
33
34
0.37.1
35
------
36
src/client/packages/idom-app-react/src/index.js
@@ -6,9 +6,8 @@ export function mount(mountPoint) {
6
port: document.location.port,
7
path: "../",
8
query: queryParams.user.toString(),
9
- secture: document.location.protocol == "https",
+ secure: document.location.protocol == "https:",
10
});
11
-
12
mountWithLayoutServer(mountPoint, serverInfo, shouldReconnect() ? 45 : 0);
13
}
14
0 commit comments