Spaces:
Build error
Build error
fix
Browse files- src/api/crawler.ts +1 -1
src/api/crawler.ts
CHANGED
|
@@ -532,7 +532,7 @@ export class CrawlerHost extends RPCHost {
|
|
| 532 |
});
|
| 533 |
}
|
| 534 |
|
| 535 |
-
if (!isIp) {
|
| 536 |
await lookup(result.hostname).catch((err) => {
|
| 537 |
if (err.code === 'ENOTFOUND') {
|
| 538 |
return Promise.reject(new ParamValidationError({
|
|
|
|
| 532 |
});
|
| 533 |
}
|
| 534 |
|
| 535 |
+
if (!isIp && result.protocol !== 'blob:') {
|
| 536 |
await lookup(result.hostname).catch((err) => {
|
| 537 |
if (err.code === 'ENOTFOUND') {
|
| 538 |
return Promise.reject(new ParamValidationError({
|