We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a12a739 commit 5817972Copy full SHA for 5817972
src.ts/utils/geturl-browser.ts
@@ -30,7 +30,7 @@ declare global {
30
export function createGetUrl(options?: Record<string, any>): FetchGetUrlFunc {
31
32
async function getUrl(req: FetchRequest, _signal?: FetchCancelSignal): Promise<GetUrlResponse> {
33
- assert(signal == null || !signal.cancelled, "request cancelled before sending", "CANCELLED");
+ assert(_signal == null || !_signal.cancelled, "request cancelled before sending", "CANCELLED");
34
35
const protocol = req.url.split(":")[0].toLowerCase();
36
0 commit comments