fix embedr invalid indirection err

This commit is contained in:
Michael Black
2026-05-27 16:23:11 -05:00
parent a99f8bf3d6
commit b217d9dd5d
+1 -1
View File
@@ -95,7 +95,7 @@ func (srv *Server) parseBlueskyURL(ctx context.Context, raw string) (*syntax.ATU
}
var did syntax.DID
if atid.IsHandle() {
ident, err := srv.dir.Lookup(ctx, *atid)
ident, err := srv.dir.Lookup(ctx, atid)
if err != nil {
return nil, err
}