Fix Android API check (#4428)

This commit is contained in:
Peter Hedenskog 2025-02-03 09:07:52 +01:00 committed by GitHub
parent 180b893e06
commit 43a318885f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ async function api(options) {
apiOptions.api.testType = 'emulatedMobile';
} else if (
apiOptions.android === true ||
apiOptions.android.enabled === true
(apiOptions.android && apiOptions.android.enabled === true)
) {
apiOptions.api.testType = 'android';
} else if (apiOptions.safari && apiOptions.safari.ios) {