We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug The script terminates after a certain time.
The problem is due to a faulty test for “undefind” with “let _bth”
current code: if (_bth === "undefined")
if (_bth === "undefined")
corrected code: if (typeof _bth === "undefined")
if (typeof _bth === "undefined")
Please correct the script in the repository.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The script terminates after a certain time.
The problem is due to a faulty test for “undefind” with “let _bth”
current code:
if (_bth === "undefined")
corrected code:
if (typeof _bth === "undefined")
Please correct the script in the repository.
The text was updated successfully, but these errors were encountered: