Skip to content

Commit 06f8c70

Browse files
authored
Merge pull request #69 from thijs-qv/master
fetch.js - call fs.session() instead of session().
2 parents 729b3a1 + e6b9ace commit 06f8c70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fetch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ export function fetch(...args: any): Promise {
259259
if (options.path || options.fileCache || options.addAndroidDownloads
260260
|| options.key || options.auto && respInfo.respType === 'blob') {
261261
if (options.session)
262-
session(options.session).add(data);
262+
fs.session(options.session).add(data);
263263
}
264264
respInfo.rnfbEncode = rawType;
265265
resolve(new FetchBlobResponse(taskId, respInfo, data));

0 commit comments

Comments
 (0)