This commit is contained in:
iwojima 2024-04-21 13:15:15 +09:00 committed by GitHub
commit 046daa85a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

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