BetterDiscordApp-rauenzi/injector
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
..
src ReactDevTools: fixed race condition (#898) 2021-07-26 11:19:16 -04:00
.gitignore Restructure BD into a small mono-repo 2021-03-06 03:30:16 -05:00
README.md Restructure BD into a small mono-repo 2021-03-06 03:30:16 -05:00
jsconfig.json Restructure BD into a small mono-repo 2021-03-06 03:30:16 -05:00
package-lock.json Update dependencies 2021-07-08 18:32:35 -04:00
package.json Fix build and add instructions 2021-03-18 10:00:12 -04:00
webpack.config.js Fix build and add instructions 2021-03-18 10:00:12 -04:00

README.md

BetterDiscord Injector

You're probably looking for the main app, click here to go there.