about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-02-07 18:58:18 -0500
committerGitHub <noreply@github.com>2023-02-08 00:58:18 +0100
commitcec005068f25c6487331a8437e69f29d5bef3d60 (patch)
tree6eac3f1cb4a0f27868890e7ed9bfa6c814d855dd /app/workers
parentf31d9a590d0b07e60d92f5dd404ab628a4a2ff70 (diff)
Apply Rubocop Performance/RedundantBlockCall (#23440)
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/import/relationship_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/import/relationship_worker.rb b/app/workers/import/relationship_worker.rb
index 6791b15c3..c2728c196 100644
--- a/app/workers/import/relationship_worker.rb
+++ b/app/workers/import/relationship_worker.rb
@@ -49,7 +49,7 @@ class Import::RelationshipWorker
         .with_error_handler { |error, handle| error.is_a?(HTTP::Error) || error.is_a?(OpenSSL::SSL::SSLError) ? handle.call(error) : raise(error) }
         .run
     else
-      block.call
+      yield
     end
   end
 end