Upgraded firmware for Simone Giertz's Every Day Calendar that links an ATProto-powered ESP32, for sync with goals.garden 🌱
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix backlinks API query for new goalUri schema

The query was still using goal.uri (nested) but the completion
records now use goalUri (flat field).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+1 -1
+1 -1
firmware/esp32/GoalsGardenSync/atproto_client.cpp
··· 206 206 while (hasMore) { 207 207 String url = "https://constellation.microcosm.blue/xrpc/blue.microcosm.links.getBacklinks" 208 208 "?subject=" + encodedGoalUri + 209 - "&source=garden.goals.completion%3Agoal.uri&limit=100"; 209 + "&source=garden.goals.completion%3AgoalUri&limit=100"; 210 210 if (cursor.length() > 0) { 211 211 url += "&cursor=" + cursor; 212 212 }