mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 02:53:22 +02:00
Bug fix
There was a disconnection happening at opening of any app. Now it disconnect only for that specific app.
This commit is contained in:
parent
14440c5331
commit
991c7a9a09
1 changed files with 3 additions and 1 deletions
|
@ -114,7 +114,9 @@
|
|||
Script.update.connect(myTimer);
|
||||
} else {
|
||||
appStatus = false;
|
||||
Script.update.disconnect(myTimer);
|
||||
if (url.indexOf(APP_URL) !== -1) {
|
||||
Script.update.disconnect(myTimer);
|
||||
}
|
||||
}
|
||||
|
||||
if (flashLightID === Uuid.NULL) {
|
||||
|
|
Loading…
Reference in a new issue