Select the types of activity you want to include in your feed.
Stateless auth proxy that converts AT Protocol native apps from public to confidential OAuth clients. Deploy once, get 180-day refresh tokens instead of 24-hour ones.
···2626 return fmt.Errorf("endpoint must have a hostname")
2727 }
28282929- if isPrivateHost(host) {
3030- return fmt.Errorf("endpoint must not be a private/localhost address")
3131- }
3232-3329 if _, ok := validatedHosts.Load(host); ok {
3430 return nil
3131+ }
3232+3333+ if isPrivateHost(host) {
3434+ return fmt.Errorf("endpoint must not be a private/localhost address")
3535 }
36363737 validatedHosts.Store(host, true)