Coffee journaling on ATProto (alpha) alpha.arabica.social
coffee
17
fork

Configure Feed

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

fix: show "Arabica" in OAuth permissions screen

+4 -2
+4 -2
internal/atproto/oauth.go
··· 121 121 // ClientMetadata returns the OAuth client metadata document 122 122 // This should be served at the client_id URL 123 123 func (m *OAuthManager) ClientMetadata() oauth.ClientMetadata { 124 - return m.app.Config.ClientMetadata() 124 + name := "Arabica" 125 + meta := m.app.Config.ClientMetadata() 126 + meta.ClientName = &name 127 + return meta 125 128 } 126 129 127 130 // SetOnAuthSuccess sets a callback that is called when a user authenticates successfully ··· 370 373 buf.ReadFrom(resp.Body) 371 374 return buf.Bytes() 372 375 } 373 -