fix: nostr discovery timeout
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 34s
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 34s
This commit is contained in:
parent
9432e99b3b
commit
3a090cdfd6
@ -790,11 +790,21 @@ const getUserAppDataFromBlossom = async (url: string, privateKey: string) => {
|
|||||||
errorCode = status
|
errorCode = status
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// HACK: Timeout issue, blossom server nostr discovery
|
||||||
|
// Force the error code as the timeout
|
||||||
|
if (
|
||||||
|
errorCode === 0 &&
|
||||||
|
axios.isAxiosError(err) &&
|
||||||
|
err.code === 'ERR_NETWORK'
|
||||||
|
) {
|
||||||
|
errorCode = 504
|
||||||
|
}
|
||||||
|
|
||||||
return null
|
return null
|
||||||
})
|
})
|
||||||
|
|
||||||
// Return a default value if the requested resource is not found (404)
|
// Return a default value if the requested resource is not found (404)
|
||||||
if (errorCode === 404) {
|
if (errorCode === 404 || errorCode === 504) {
|
||||||
return {
|
return {
|
||||||
sigits: {},
|
sigits: {},
|
||||||
processedGiftWraps: []
|
processedGiftWraps: []
|
||||||
|
Loading…
Reference in New Issue
Block a user