diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-01-19 23:05:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 23:05:59 +0100 |
commit | 9eb775a9d1fd39bc2d255679bb12b2ff6f98080d (patch) | |
tree | 1ceda3892f8be2ac0bd40e12d4473e01fdb23053 /app | |
parent | d412a8d1f239aa93a92f420127cb3183a8bb6449 (diff) |
Fix error when using raw distribution worker (#17334)
Regression from #16697
Diffstat (limited to 'app')
-rw-r--r-- | app/workers/activitypub/raw_distribution_worker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/activitypub/raw_distribution_worker.rb b/app/workers/activitypub/raw_distribution_worker.rb index ac5eda4af..8ecc17db9 100644 --- a/app/workers/activitypub/raw_distribution_worker.rb +++ b/app/workers/activitypub/raw_distribution_worker.rb @@ -43,6 +43,6 @@ class ActivityPub::RawDistributionWorker end def options - nil + {} end end |