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 8c61c05 commit 2e52659Copy full SHA for 2e52659
src/data-index/index.ts
@@ -174,8 +174,7 @@ export class FullIndex extends Component {
174
if (!PathFilters.markdown(file.path)) return { cached: false, skipped: true };
175
176
// The first load of a file is attempted from persisted cache; subsequent loads just use the importer.
177
- let exists = this.pages.has(file.path);
178
- if (exists) {
+ if (this.pages.has(file.path) || this.initialized) {
179
await this.import(file);
180
return { cached: false, skipped: false };
181
} else {
0 commit comments