We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be3fa9b commit 4489612Copy full SHA for 4489612
1 file changed
test/index.html
@@ -71,9 +71,9 @@
71
return promise;
72
}
73
execNode(NODE_COMMANDS.GET_PORT)
74
- .then(message=>{
+ .then(async message=>{
75
window.nodeWSEndpoint = `ws://localhost:${message.port}/phoenixFS`;
76
- fs.setNodeWSEndpoint(`ws://localhost:${message.port}/phoenixFS`);
+ await fs.setNodeWSEndpoint(`ws://localhost:${message.port}/phoenixFS`);
77
window.isNodeSetup = true;
78
});
79
setInterval(()=>{
@@ -125,9 +125,9 @@
125
};
126
127
128
- .then(message => {
+ .then(async message => {
129
130
131
132
133
0 commit comments