Skip to content

Commit

Permalink
assetData now
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeigs committed Jan 24, 2024
1 parent bb4ba47 commit 011e9d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/init/DocumentDatabase.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ class ManifestDocumentDatabase {
const assets = JSON.parse(fs.readFileSync('snooty-assets.json'));
console.log('DOCUMENTS found in snooty-assets.json', Object.keys(assets));
console.log('checksum ', checksum);
const asset = assets[checksum];
const assetData = assets.assetData;
console.log('assetData info ', Object.keys(assetData));
const asset = assetData[checksum];
console.log('is this asset around? ', asset);
return asset;
}
Expand Down

0 comments on commit 011e9d0

Please sign in to comment.