@akylas/nativescript-app-utils
Advanced tools
Comparing version 2.2.2 to 2.2.3
@@ -6,2 +6,6 @@ # Change Log | ||
## [2.2.3](https://github.com/akylas/nativescript-app-utils/compare/v2.2.2...v2.2.3) (2025-01-31) | ||
**Note:** Version bump only for package @akylas/nativescript-app-utils | ||
## [2.2.2](https://github.com/akylas/nativescript-app-utils/compare/v2.2.1...v2.2.2) (2025-01-27) | ||
@@ -8,0 +12,0 @@ |
{ | ||
"name": "@akylas/nativescript-app-utils", | ||
"version": "2.2.2", | ||
"version": "2.2.3", | ||
"description": "Provides API for changing the styles of SystemUI (StatusBar, NavigationBar...) on iOS.", | ||
@@ -69,3 +69,3 @@ "main": "index", | ||
}, | ||
"gitHead": "ec8df43fa0a487e0dc712b221689d95fd524de74" | ||
"gitHead": "a4acea396bce45159bcc13904cec638a444bc618" | ||
} |
@@ -68,2 +68,6 @@ import { setWorkerContextValue } from '@akylas/nativescript-app-utils'; | ||
worker.onmessage = this.onWorkerMessage.bind(this); | ||
worker.onerror = (e) => { | ||
reject(e); | ||
this.worker = null; | ||
}; | ||
const timeoutTimer = setTimeout(() => { | ||
@@ -70,0 +74,0 @@ reject(new Error('failed_to_start_worker')); |
129421
1044