From 04500648318c123ac82720851fb06fd1dabc24f5 Mon Sep 17 00:00:00 2001 From: Przemek Wiech Date: Sun, 22 Mar 2020 14:30:25 +0100 Subject: [PATCH] WikiTree: Fix images not showing in PDF and PNG --- src/wikitree.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wikitree.ts b/src/wikitree.ts index f4cd0b0..9ecf459 100644 --- a/src/wikitree.ts +++ b/src/wikitree.ts @@ -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; }