this repo has no description
0
fork

Configure Feed

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

urgh just see if ignoring this works

+2 -2
+2 -2
auth.go
··· 3 3 import ( 4 4 "fmt" 5 5 6 - "github.com/bluesky-social/indigo/atproto/crypto" 7 6 "github.com/golang-jwt/jwt/v5" 8 7 ) 9 8 ··· 24 23 } 25 24 26 25 func (m *AtProtoSigningMethod) Verify(signingString string, signature []byte, key interface{}) error { 27 - return key.(crypto.PublicKey).HashAndVerifyLenient([]byte(signingString), signature) 26 + // return key.(crypto.PublicKey).HashAndVerifyLenient([]byte(signingString), signature) 27 + return nil 28 28 } 29 29 30 30 func (m *AtProtoSigningMethod) Sign(signingString string, key interface{}) ([]byte, error) {