diff options
author | ThibG <thib@sitedethib.com> | 2020-10-23 14:21:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 14:21:31 +0200 |
commit | fb586584f2146470be884b5c150fedd04be8cc85 (patch) | |
tree | 37789b146578055757cb0503cd58972da71e4458 /app/services | |
parent | 57b9115c4e0446c3ebb313a2612e256b270cfd25 (diff) |
Fix account processing failing because of large collections (#15027)
Fixes #15025
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/activitypub/process_account_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/activitypub/process_account_service.rb b/app/services/activitypub/process_account_service.rb index 85b915ec6..9f95f1950 100644 --- a/app/services/activitypub/process_account_service.rb +++ b/app/services/activitypub/process_account_service.rb @@ -196,7 +196,7 @@ class ActivityPub::ProcessAccountService < BaseService total_items = collection.is_a?(Hash) && collection['totalItems'].present? && collection['totalItems'].is_a?(Numeric) ? collection['totalItems'] : nil has_first_page = collection.is_a?(Hash) && collection['first'].present? @collections[type] = [total_items, has_first_page] - rescue HTTP::Error, OpenSSL::SSL::SSLError + rescue HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::LengthValidationError @collections[type] = [nil, nil] end |