Monorepo for Tangled
0

Configure Feed

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

appview: ingest `createdAt` information from ingester

Signed-off-by: Seongmin Lee <git@boltless.me>

Seongmin Lee (Jun 30, 2026, 4:12 PM +0900) e293ac6a 928c2678

+8 -2
+8 -2
appview/ingester.go
··· 209 209 record := tangled.FeedStar{} 210 210 unmarshalErr := json.Unmarshal(raw, &record) 211 211 212 + createdAt, parseErr := time.Parse(time.RFC3339, record.CreatedAt) 213 + if parseErr != nil { 214 + createdAt = time.Now() 215 + } 216 + 212 217 star := models.Star{ 213 - Did: did, 214 - Rkey: e.Commit.RKey, 218 + Did: did, 219 + Rkey: e.Commit.RKey, 220 + Created: createdAt, 215 221 } 216 222 217 223 switch {