fix(nuxt): pass `DOMException` as fetch abort exception (#29058)

This commit is contained in:
DarkVen0m 2024-09-18 22:21:18 +03:00 committed by GitHub
parent 7071da8851
commit 2b73e1690c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ export function useFetch<
let controller: AbortController
const asyncData = useAsyncData<_ResT, ErrorT, DataT, PickKeys, DefaultT>(key, () => {
controller?.abort?.('Request aborted as another request to the same endpoint was initiated.')
controller?.abort?.(new DOMException('Request aborted as another request to the same endpoint was initiated.', 'AbortError'))
controller = typeof AbortController !== 'undefined' ? new AbortController() : {} as AbortController
/**
@ -164,7 +164,7 @@ export function useFetch<
const timeoutLength = toValue(opts.timeout)
let timeoutId: NodeJS.Timeout
if (timeoutLength) {
timeoutId = setTimeout(() => controller.abort('Request aborted due to timeout.'), timeoutLength)
timeoutId = setTimeout(() => controller.abort(new DOMException('Request aborted due to timeout.', 'AbortError')), timeoutLength)
controller.signal.onabort = () => clearTimeout(timeoutId)
}