WikiTree: Fix images not showing in PDF and PNG

This commit is contained in:
Przemek Wiech
2020-03-22 14:30:25 +01:00
parent 618b788972
commit 0450064831

View File

@@ -357,7 +357,7 @@ function convertPerson(person: Person): JsonIndi {
indi.death = Object.assign({}, parsedDate, {place: person.DeathLocation});
}
if (person.PhotoData) {
indi.images = [{url: `https://wikitree.com${person.PhotoData.path}`}];
indi.images = [{url: `https://www.wikitree.com${person.PhotoData.path}`}];
}
return indi;
}