backend for xcvr appview
2
fork

Configure Feed

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

full resolve new did

rachel-mp4 c04c1e70 4f20ca42

+2 -1
+1
server/internal/db/db.go
··· 79 79 if err != nil { 80 80 return "", errors.New("couldn't resolve: " + err.Error()) 81 81 } 82 + s.StoreDidHandle(did, hdl, ctx) 82 83 return hdl, nil 83 84 } 84 85
+1 -1
server/internal/recordmanager/profile.go
··· 54 54 nick := "wanderer" 55 55 status := "just setting up my xcvr" 56 56 color := uint64(3702605) 57 - handle, err := rm.db.ResolveDid(sessData.AccountDID.String(), ctx) 57 + handle, err := rm.db.FullResolveDid(sessData.AccountDID.String(), ctx) 58 58 if err != nil { 59 59 return errors.New("i couldn't find the handle, so i couldn't create default profile record. gootbye") 60 60 }