this repo has no description
0
fork

Configure Feed

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

Add error handling for listInviteTreeCmd (#398)

Adds error handling so we can iterate through an entire invite tree even
if it contains accounts that have been taken down or otherwise error out
on getRepo.

authored by

Whyrusleeping and committed by
GitHub
7fe27191 aa07638d

+2 -1
+2 -1
cmd/gosky/admin.go
··· 595 595 596 596 rep, err := atproto.AdminGetRepo(ctx, xrpcc, next) 597 597 if err != nil { 598 - return fmt.Errorf("getRepo %s: %w", did, err) 598 + fmt.Printf("Failed to getRepo for DID %s: %s\n", next, err.Error()) 599 + continue 599 600 } 600 601 fmt.Print(next) 601 602