+1
readme.md
+1
readme.md
···
5
5
you 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/))
6
6
7
7
still very early in development
8
+
8
9
implemented routes:
9
10
- app.bsky.actor.getProfiles
10
11
- app.bsky.actor.getProfile
+6
-1
shims/lex/app/bsky/actor/defs/profileview.go
+6
-1
shims/lex/app/bsky/actor/defs/profileview.go
···
103
103
if err_i != nil {
104
104
followerCount_Out = nil
105
105
}
106
-
followerCount := int64(followerCount_Out.Total)
106
+
var followerCount int64
107
+
if followerCount_Out == nil {
108
+
followerCount = int64(-1)
109
+
} else {
110
+
followerCount = int64(followerCount_Out.Total)
111
+
}
107
112
108
113
var banner *string
109
114
if profile.Banner != nil {