@@ -434,7 +434,7 @@ function fetchXHR(fetch, onsuccess, onerror, onprogress, onreadystatechange) {
434
434
function startFetch ( fetch , successcb , errorcb , progresscb , readystatechangecb ) {
435
435
// Avoid shutting down the runtime since we want to wait for the async
436
436
// response.
437
- runtimeKeepalivePush ( ) ;
437
+ { { { runtimeKeepalivePush ( ) } } }
438
438
439
439
var fetch_attr = fetch + { { { C_STRUCTS . emscripten_fetch_t . __attributes } } } ;
440
440
var requestMethod = UTF8ToString ( fetch_attr ) ;
@@ -456,7 +456,7 @@ function startFetch(fetch, successcb, errorcb, progresscb, readystatechangecb) {
456
456
#if FETCH_DEBUG
457
457
console . log ( 'fetch: operation success. e: ' + e ) ;
458
458
#endif
459
- runtimeKeepalivePop ( ) ;
459
+ { { { runtimeKeepalivePop ( ) } } }
460
460
callUserCallback ( function ( ) {
461
461
if ( onsuccess ) { { { makeDynCall ( 'vi' , 'onsuccess' ) } } } ( fetch ) ;
462
462
else if ( successcb ) successcb ( fetch ) ;
@@ -474,7 +474,7 @@ function startFetch(fetch, successcb, errorcb, progresscb, readystatechangecb) {
474
474
#if FETCH_DEBUG
475
475
console . error ( 'fetch: operation failed: ' + e ) ;
476
476
#endif
477
- runtimeKeepalivePop ( ) ;
477
+ { { { runtimeKeepalivePop ( ) } } }
478
478
callUserCallback ( function ( ) {
479
479
if ( onerror ) { { { makeDynCall ( 'vi' , 'onerror' ) } } } ( fetch ) ;
480
480
else if ( errorcb ) errorcb ( fetch ) ;
@@ -507,7 +507,7 @@ function startFetch(fetch, successcb, errorcb, progresscb, readystatechangecb) {
507
507
#if FETCH_DEBUG
508
508
console . log ( 'fetch: IndexedDB store succeeded.' ) ;
509
509
#endif
510
- runtimeKeepalivePop ( ) ;
510
+ { { { runtimeKeepalivePop ( ) } } }
511
511
callUserCallback ( function ( ) {
512
512
if ( onsuccess ) { { { makeDynCall ( 'vi' , 'onsuccess' ) } } } ( fetch ) ;
513
513
else if ( successcb ) successcb ( fetch ) ;
@@ -517,7 +517,7 @@ function startFetch(fetch, successcb, errorcb, progresscb, readystatechangecb) {
517
517
#if FETCH_DEBUG
518
518
console . error ( 'fetch: IndexedDB store failed.' ) ;
519
519
#endif
520
- runtimeKeepalivePop ( ) ;
520
+ { { { runtimeKeepalivePop ( ) } } }
521
521
callUserCallback ( function ( ) {
522
522
if ( onsuccess ) { { { makeDynCall ( 'vi' , 'onsuccess' ) } } } ( fetch ) ;
523
523
else if ( successcb ) successcb ( fetch ) ;
0 commit comments