2
0
Эх сурвалжийг харах

Merge pull request #734 from weseek/fix/add-error-handling

Imprv/add error handling
Yuki Takei 7 жил өмнө
parent
commit
d7a1d0b617

+ 2 - 0
src/client/js/hackmd-agent.js

@@ -122,6 +122,8 @@ function connectToParentWithPenpal() {
   });
   connection.promise.then(parent => {
     window.growi = parent;
+  }).catch(err => {
+    console.log(err);
   });
 }