···55you can use it right now by using `did:web:server.reddwarf.app` with any bluesky client that supports custom appviews (like for example [witchsky](https://witchsky.app/))
6677still very early in development
88+89implemented routes:
910- app.bsky.actor.getProfiles
1011- app.bsky.actor.getProfile
+6-1
shims/lex/app/bsky/actor/defs/profileview.go
···103103 if err_i != nil {
104104 followerCount_Out = nil
105105 }
106106- followerCount := int64(followerCount_Out.Total)
106106+ var followerCount int64
107107+ if followerCount_Out == nil {
108108+ followerCount = int64(-1)
109109+ } else {
110110+ followerCount = int64(followerCount_Out.Total)
111111+ }
107112108113 var banner *string
109114 if profile.Banner != nil {