Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/erin/jjs' into marston/draft-box
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMarstonConnell committed Feb 14, 2024
2 parents 56248b7 + 9f57d30 commit 58cd2f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/store/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ class BStore implements IBStore {
const final = {}
const children = folder.getChildFiles()
for (const name in children) {
final[name] = children[name].lastModified
const children = folder.getChildFiles()
const trunked = name.replace(/\.html$/, '')
final[trunked] = children[name].lastModified
}

await this.globalFileIo.shuffle()
Expand Down

0 comments on commit 58cd2f7

Please sign in to comment.