about summary refs log tree commit diff
path: root/app/controllers/well_known/webfinger_controller.rb
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2020-01-20 22:41:26 -0600
committermultiple creatures <dev@multiple-creature.party>2020-01-20 22:41:26 -0600
commitb2e391d2681bd88647450191c6bde5acf4d0e099 (patch)
tree09cde00a701845bcb1545e9c7dff4b1431368580 /app/controllers/well_known/webfinger_controller.rb
parent7dc114f5895905151d7d903b1adb6928da46a45a (diff)
fix code typo
Diffstat (limited to 'app/controllers/well_known/webfinger_controller.rb')
-rw-r--r--app/controllers/well_known/webfinger_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/well_known/webfinger_controller.rb b/app/controllers/well_known/webfinger_controller.rb
index bf4e5d6b9..50bace217 100644
--- a/app/controllers/well_known/webfinger_controller.rb
+++ b/app/controllers/well_known/webfinger_controller.rb
@@ -10,7 +10,7 @@ module WellKnown
       @account = Account.find_local!(username_from_resource)
 
       expires_in 3.days, public: true
-      render json: @account, serializer: WebfingerSErializer, content_type: 'application/jrd+json'
+      render json: @account, serializer: WebfingerSerializer, content_type: 'application/jrd+json'
     rescue ActiveRecord::RecordNotFound
       head 404
     end