diff --git a/chrome/content/zotero/xpcom/pipe_worker.js b/chrome/content/zotero/xpcom/pipe_worker.js index 8b317e929..df9834ff4 100644 --- a/chrome/content/zotero/xpcom/pipe_worker.js +++ b/chrome/content/zotero/xpcom/pipe_worker.js @@ -42,6 +42,7 @@ onmessage = function(event) { // define buffer for reading from fifo const BUFFER_SIZE = 4096; + postMessage(["Open", null]); while(true) { var buf = ctypes.char.array(BUFFER_SIZE)("");