fix entries being saved to wrong spot

currently placeholder to allow for option for embeddedEntries
This commit is contained in:
lightling 2024-10-16 18:05:23 -04:00
parent 916b029aa5
commit bdd7be61b0

View file

@ -73,6 +73,11 @@ const saveVariantsToDestination = async (inVal, fetchUrl, destination, destinati
const thumbnailPath = `${entryPath}/${variant.thumbnailUrl.replace('/uploads/', '')}`;
saveFileFromUrl(`http://${rootUrl}${variant.thumbnailUrl}`, thumbnailPath);
outVal.entries[entryId].variants[index].thumbnailUrl = `/content/${destinationShort}/${entryId}/${variant.thumbnailUrl.replace('/uploads/', '')}`;
if (true) {
await writeFile(`${entryPath}/info.json`, JSON.stringify(outVal.entries[entryId], null, 2));
outVal.entries[entryId] = `/content/${destinationShort}/${entryId}/info.json`;
}
}));
}));