Skip to content

Commit c3f5c0d

Browse files
authored
fix: add missing extra (#20)
1 parent 47085e3 commit c3f5c0d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

js/crawl/crawl.ui.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,11 @@ const attachListeners = () => {
268268
linksToFollow,
269269
}) => {
270270
if (crawlStatus.hasExtra) {
271-
return [url];
271+
return [
272+
url, status, redirect || '', nbLinks || '', nbLinksAlreadyProcessed || '', nbLinksExternalHost || '', nbLinksToFollow || '', linksToFollow ? linksToFollow.join(', ') : '',
273+
];
272274
}
273-
return [
274-
url, status, redirect || '', nbLinks || '', nbLinksAlreadyProcessed || '', nbLinksExternalHost || '', nbLinksToFollow || '', linksToFollow ? linksToFollow.join(', ') : '',
275-
];
275+
return [url];
276276
})));
277277
const buffer = await workbook.xlsx.writeBuffer();
278278
const a = document.createElement('a');

0 commit comments

Comments
 (0)