You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
👀 [W505] setTimeout found in "build/main.js", but no clearTimeout detected
EVERY setTimerout / setInterval MUST be canceled at onOnload as a dangling timer would break compact mode and yield to adapter crashes.
Alternativly you could use uibroker wrapper this.setTimeout instead of setTimeoutwhich will mange this too. This will not remove the warning aas according to good praxis a cancellation should be done anyway. But a look at your code seems to make it easier for you to only use this.setTimeout. I'll ignore the warrning in this case.
The text was updated successfully, but these errors were encountered:
- (Michael Schroeder) [#126](#126) Fixed Adapter-Checker warning.
- (Michael Schroeder) [#124](#124) Added help message for password in configuration dialog.
- (Michael Schroeder) [#106](#106) Fixed an unhandled rejection exception.
- (Michael Schroeder) [#135](#135) Fixed warning for Admin settings.
- (Michael Schroeder) [#137](#137) Fixed Github Workflows.
- (Michael Schroeder) [#40](#40) The scene list can be refreshed.
- (Michael Schroeder) [#129](#129) The state targetPositionRaw is writable to support additional scenarios.
- (Michael Schroeder) [#133](#133) Added a refreshProduct state to manually refresh the state of a product.
Please fix
👀 [W505] setTimeout found in "build/main.js", but no clearTimeout detected
EVERY setTimerout / setInterval MUST be canceled at onOnload as a dangling timer would break compact mode and yield to adapter crashes.
Alternativly you could use uibroker wrapper this.setTimeout instead of setTimeoutwhich will mange this too. This will not remove the warning aas according to good praxis a cancellation should be done anyway. But a look at your code seems to make it easier for you to only use this.setTimeout. I'll ignore the warrning in this case.
The text was updated successfully, but these errors were encountered: