about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-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