BetterDiscordApp-rauenzi/injector/src
Qb e99686346c
ReactDevTools: fixed race condition (#898)
```js
console.log('READY STATE '+ electron.app.isReady());
electron.app.once("loaded", async ()=>{console.log("loaded");});
electron.app.whenReady().then(async ()=>{console.log("whenReady");});
```
Results in the following when the app is already ready.
```
READY STATE true
whenReady
[... loaded will be logged]
```
This will not fix the race condition when opening the devtools. You want to open the devtools as **early** as possible for the tabs to show up.
2021-07-26 11:19:16 -04:00
..
modules ReactDevTools: fixed race condition (#898) 2021-07-26 11:19:16 -04:00
index.js Fix several crashing issues (#869) 2021-07-07 18:34:04 -04:00
preload.js Fix several crashing issues (#869) 2021-07-07 18:34:04 -04:00