We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28677fc commit 58991a0Copy full SHA for 58991a0
src/DatabasePageRenderer.ts
@@ -44,7 +44,10 @@ export class DatabasePageRenderer {
44
const context = new RenderingLoggingContext(page.url, file);
45
46
if (page.archived) {
47
- context.warn(`page is arvhied`);
+ // have to skip rendering archived pages as attempting to retrieve the block will result in a HTTP 404
48
+ context.warn(`page is archived - skipping`);
49
+
50
+ return;
51
}
52
53
try {
0 commit comments