Tim Wilkis

Results 2 comments of Tim Wilkis

Within windows.js the following line is causing the crash. `const windowTextBufferClean = ref.reinterpretUntilZeros(windowTextBuffer, wchar.size);`

I found a work around, it appears the ref-napi.reinterpretUntilZeros function is broken in electron 8. I changed the following: `const windowTextBufferClean = ref.reinterpretUntilZeros(windowTextBuffer, wchar.size);` to `const dirtyTitle = wchar.toString(windowTextBuffer);` `const...