Skip to content

Commit

Permalink
fix: waiting for introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
FaelN1 committed Jun 15, 2023
1 parent 962d539 commit a65de59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib/wapi/wapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,10 @@ function injectParasite() {
}

(async () => {
window[injectConfig.webpack] = window[injectConfig.webpack] || [];
// window[injectConfig.webpack] = window[injectConfig.webpack] || [];
if (typeof window[injectConfig.webpack] === 'undefined') {
window[injectConfig.webpack] = [];
}
while (true) {
const last = window[injectConfig.webpack].length - 1;
if (
Expand Down

1 comment on commit a65de59

@sandro-salles
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a hint if, even after this change, the application keeps stuck on waiting for introduction stop: erase all previously generated tokens and start again. I had a situation here with one of my installations where i had to do that in order to make it work.

Please sign in to comment.