소스 검색

fix capitalization error, not sure why classes got downcased in some areas

Kylie Jo Swistak 4 년 전
부모
커밋
80a4b1c1c7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/app_forms/app_form.rb

+ 1 - 1
app/app_forms/app_form.rb

@@ -66,7 +66,7 @@ class ApplicationForm
   end
 
   def self.to_office(event, office)
-    app = embed.convert(event.message.embeds.first)
+    app = Embed.convert(event.message.embeds.first)
     BotResponse.new(destination: office, embed: app)
   end
 end