backend for xcvr appview
2
fork

Configure Feed

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

better error message

rachel-mp4 12101d35 1a7826b3

+1 -1
+1 -1
server/internal/handler/lrcHandlers.go
··· 52 52 if err != nil { 53 53 handle, err = atputils.TryLookupDid(r.Context(), did) 54 54 if err != nil { 55 - h.serverError(w, errors.New("couldn't find handle")) 55 + h.serverError(w, errors.New(fmt.Sprintf("couldn't find handle for did %s: %s", did, err.Error()))) 56 56 return 57 57 } 58 58 go h.db.StoreDidHandle(did, handle, context.Background())