about summary refs log tree commit diff
path: root/app/lib/activitypub/case_transform.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/activitypub/case_transform.rb')
-rw-r--r--app/lib/activitypub/case_transform.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/lib/activitypub/case_transform.rb b/app/lib/activitypub/case_transform.rb
index 7f716f862..7f31fabda 100644
--- a/app/lib/activitypub/case_transform.rb
+++ b/app/lib/activitypub/case_transform.rb
@@ -14,8 +14,10 @@ module ActivityPub::CaseTransform
       when String
         camel_lower_cache[value] ||= if value.start_with?('_:')
                                        '_:' + value.gsub(/\A_:/, '').underscore.camelize(:lower)
-                                     else
+                                     elsif value != '_misskey_quote'
                                        value.underscore.camelize(:lower)
+                                     else
+                                       value
                                      end
       else value
       end