fix entries being saved to wrong spot
currently placeholder to allow for option for embeddedEntries
This commit is contained in:
parent
916b029aa5
commit
bdd7be61b0
1 changed files with 5 additions and 0 deletions
|
@ -73,6 +73,11 @@ const saveVariantsToDestination = async (inVal, fetchUrl, destination, destinati
|
||||||
const thumbnailPath = `${entryPath}/${variant.thumbnailUrl.replace('/uploads/', '')}`;
|
const thumbnailPath = `${entryPath}/${variant.thumbnailUrl.replace('/uploads/', '')}`;
|
||||||
saveFileFromUrl(`http://${rootUrl}${variant.thumbnailUrl}`, thumbnailPath);
|
saveFileFromUrl(`http://${rootUrl}${variant.thumbnailUrl}`, thumbnailPath);
|
||||||
outVal.entries[entryId].variants[index].thumbnailUrl = `/content/${destinationShort}/${entryId}/${variant.thumbnailUrl.replace('/uploads/', '')}`;
|
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`;
|
||||||
|
}
|
||||||
}));
|
}));
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue