This commit is contained in:
iwojima 2025-06-05 00:50:32 +00:00 committed by GitHub
commit 70311f7474
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -105,7 +105,10 @@ func (ru *RemoteUser) AsPerson() *activitystreams.Person {
func activityPubClient() *http.Client { func activityPubClient() *http.Client {
return &http.Client{ return &http.Client{
Timeout: 15 * time.Second, Timeout: 120 * time.Second,
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
},
} }
} }