File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import location from '../location.js'
1111import path from '../path.js'
1212import URL from '../url.js'
1313import fs from '../fs.js'
14+ import os from '../os.js'
1415
1516const RUNTIME_SERVICE_WORKER_FETCH_MODE = 'Runtime-ServiceWorker-Fetch-Mode'
1617const RUNTIME_REQUEST_SOURCE_HEADER = 'Runtime-Request-Source'
@@ -208,6 +209,7 @@ export class RequestStatus {
208209 }
209210
210211 if (
212+ os . platform ( ) !== 'android' &&
211213 this . #request. id . includes ( `://${ application . config . meta_bundle_identifier } ` )
212214 ) {
213215 try {
@@ -440,6 +442,7 @@ export class Request {
440442 }
441443
442444 if (
445+ os . platform ( ) !== 'android' &&
443446 / ^ ( s o c k e t : | h t t p s : ) / . test ( this . id ) &&
444447 this . id . includes ( `//${ application . config . meta_bundle_identifier } /` )
445448 ) {
You can’t perform that action at this time.
0 commit comments