backend for xcvr appview
2
fork

Configure Feed

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

added better logging

rachel-mp4 c90594cc 131ec74c

+1 -1
+1 -1
server/internal/handler/oauthHandlers.go
··· 240 240 func (h *Handler) resetClient(id int, ctx context.Context) (*oauth.OauthXRPCClient, error) { 241 241 session, err := h.db.GetOauthSession(id, ctx) 242 242 if err != nil { 243 - return nil, errors.New("errpr setting up session: " + err.Error()) 243 + return nil, errors.New(fmt.Sprintf("errpr setting up session %d: %s", id, err.Error())) 244 244 } 245 245 return h.setupClient(session), nil 246 246 }