From ecdeb4c1223ca96c68a3d3e4c5c8e782dba1a2cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 1 Sep 2023 10:32:11 +0200 Subject: [PATCH] Fix copypasta --- app/controllers/services/mastodon_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/services/mastodon_controller.rb b/app/controllers/services/mastodon_controller.rb index c98f3cb..ddea323 100644 --- a/app/controllers/services/mastodon_controller.rb +++ b/app/controllers/services/mastodon_controller.rb @@ -9,6 +9,6 @@ class Services::MastodonController < Services::BaseController private def require_service_available - http_status :not_found unless Setting.ejabberd_enabled? + http_status :not_found unless Setting.mastodon_enabled? end end