Skip to content

Commit d1f4b2a

Browse files
committed
处理拼写问题
1 parent f62efe9 commit d1f4b2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/service/content/gm_api/gm_xhr.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -614,10 +614,10 @@ export function GM_xmlhttpRequest(
614614
responseText = false;
615615
finalResultBuffers = null;
616616
finalResultText = null;
617-
const xhrReponse = makeXHRCallbackParam?.(data) ?? {};
618-
details.onloadend?.(xhrReponse);
617+
const xhrResponse = makeXHRCallbackParam?.(data) ?? {};
618+
details.onloadend?.(xhrResponse);
619619
if (errorOccur === null) {
620-
retPromiseResolve?.(xhrReponse);
620+
retPromiseResolve?.(xhrResponse);
621621
} else {
622622
retPromiseReject?.(errorOccur);
623623
}

0 commit comments

Comments
 (0)