about summary refs log tree commit diff
path: root/app/controllers/api/salmon_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/api/salmon_controller.rb')
-rw-r--r--app/controllers/api/salmon_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/salmon_controller.rb b/app/controllers/api/salmon_controller.rb
index 01862a900..a7872d542 100644
--- a/app/controllers/api/salmon_controller.rb
+++ b/app/controllers/api/salmon_controller.rb
@@ -10,7 +10,7 @@ class Api::SalmonController < ApiController
     if body.nil?
       head 200
     else
-      ProcessInteractionService.new.call(body, @account)
+      SalmonWorker.perform_async(@account.id, body.force_encoding('UTF-8'))
       head 201
     end
   end