(fetch, xhr, e)
| 817 | }); |
| 818 | }; |
| 819 | var storeError = (fetch, xhr, e) => { |
| 820 | #if FETCH_DEBUG |
| 821 | dbg('fetch: IndexedDB store failed.'); |
| 822 | #endif |
| 823 | {{{ runtimeKeepalivePop() }}} |
| 824 | doCallback(() => { |
| 825 | if (onsuccess) {{{ makeDynCall('vp', 'onsuccess') }}}(fetch); |
| 826 | else successcb?.(fetch); |
| 827 | }); |
| 828 | }; |
| 829 | fetchCacheData(Fetch.dbInstance, fetch, xhr.response, storeSuccess, storeError); |
| 830 | }; |
| 831 |
nothing calls this directly
no test coverage detected