We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7006e4 commit d9bdec2Copy full SHA for d9bdec2
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