backend for xcvr appview
2
fork

Configure Feed

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

beep beep

rachel-mp4 5fff1c19 7e2107e8

+5 -6
+4 -1
server/internal/handler/oauthHandlers.go
··· 144 144 Status: &status, 145 145 Color: &color, 146 146 } 147 - h.xrpc.CreateXCVRProfile(defaultprofilerecord, OauthSession, context.Background()) 147 + err = h.xrpc.CreateXCVRProfile(defaultprofilerecord, OauthSession, context.Background()) 148 + if err != nil { 149 + h.logger.Println("#that happened (something went wrong when creating profile) " + err.Error()) 150 + } 148 151 }() 149 152 150 153 session.Options = &sessions.Options{
+1 -5
server/internal/lex/types.go
··· 1 1 package lex 2 2 3 - import ( 4 - "github.com/bluesky-social/indigo/lex/util" 5 - ) 6 - 7 3 type ProfileRecord struct { 8 4 DisplayName *string `json:"displayName,omitempty" cborgen:"displayName,omitempty"` 9 5 DefaultNick *string `json:"defaultNick,omitempty" cborgen:"defaultNick,omitempty"` 10 6 Status *string `json:"status,omitempty" cborgen:"status,omitempty"` 11 - Avatar *util.LexBlob `json:"avatar,omitempty" cborgen:"avatar,omitempty"` 7 + // Avatar *util.LexBlob `json:"avatar,omitempty" cborgen:"avatar,omitempty"` 12 8 Color *uint64 `json:"color,omitempty" cborgen:"color,omitempty"` 13 9 }