From d44ec2bf4ced0278b8cc5a0b5fa36fcfe38df38b Mon Sep 17 00:00:00 2001
From: Mark Felder <feld@FreeBSD.org>
Date: Thu, 2 Jul 2020 12:55:08 -0500
Subject: [PATCH] Remove camelCase from the keys

---
 lib/pleroma/web/mastodon_api/views/instance_view.ex | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/pleroma/web/mastodon_api/views/instance_view.ex b/lib/pleroma/web/mastodon_api/views/instance_view.ex
index 347480d49..89e48fba5 100644
--- a/lib/pleroma/web/mastodon_api/views/instance_view.ex
+++ b/lib/pleroma/web/mastodon_api/views/instance_view.ex
@@ -93,10 +93,10 @@ defmodule Pleroma.Web.MastodonAPI.InstanceView do
 
   def fields_limits do
     %{
-      maxFields: Config.get([:instance, :max_account_fields]),
-      maxRemoteFields: Config.get([:instance, :max_remote_account_fields]),
-      nameLength: Config.get([:instance, :account_field_name_length]),
-      valueLength: Config.get([:instance, :account_field_value_length])
+      max_fields: Config.get([:instance, :max_account_fields]),
+      max_remote_fields: Config.get([:instance, :max_remote_account_fields]),
+      name_length: Config.get([:instance, :account_field_name_length]),
+      value_length: Config.get([:instance, :account_field_value_length])
     }
   end
 end