Skip to content

Commit

Permalink
fixing in check
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Radtke authored and Ron Radtke committed Dec 4, 2023
1 parent 5dd72a1 commit 14104f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export function fetch(...args: any): Promise {
fs.session(options.session).add(data);
}
respInfo.rnfbEncode = rawType;
if (uninit in respInfo && respInfo.uninit) // event didn't fire yet so we override it here
if ('uninit' in respInfo && respInfo.uninit) // event didn't fire yet so we override it here
respInfo = responseInfo;
resolve(new FetchBlobResponse(taskId, respInfo, data));
}
Expand Down

0 comments on commit 14104f9

Please sign in to comment.