From 08fb65827cbdecaf56a1edb1c8897ac05e0ca19e Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Thu, 2 Jul 2026 21:57:21 +0000 Subject: [PATCH] =?UTF-8?q?tripit:=20set=20PLACE=5FPHOTO=5FPROVIDER=3Dwiki?= =?UTF-8?q?pedia=20=E2=80=94=20real=20place=20preview=20photos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Viktor asked for place photos on the tripit Trip board. The app-side work (add-time photo fetch, board place cards) shipped in tripit v0.106.0, but prod never set PLACE_PHOTO_PROVIDER, so the fake provider would store placeholder PNGs for every hand-added place. Same class of fake-default gap as PLACE_RESOLVER_MODE (set explicitly for the same reason); the ADR-0035 rollout had left both the env flip and its backfill cron undone. Co-Authored-By: Claude Fable 5 --- stacks/tripit/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stacks/tripit/main.tf b/stacks/tripit/main.tf index e80427de..33c947d2 100644 --- a/stacks/tripit/main.tf +++ b/stacks/tripit/main.tf @@ -175,6 +175,12 @@ locals { STORY_SOURCE_MODE = "web" SCRIPT_WRITER_MODE = "chat" PLACE_RESOLVER_MODE = "wikipedia" + # Saved Place preview photos (tripit ADR-0035/0040): the Wikipedia lead-image + # fetcher behind manual-add-time photos and the backfill sweep. Same fake- + # default gap as the resolver above — never set, so prod silently ran the + # fake and hand-added places (and any backfill) would store placeholder + # PNGs instead of real photos. + PLACE_PHOTO_PROVIDER = "wikipedia" } }