about summary refs log tree commit diff
path: root/app/services/resolve_url_service.rb
diff options
context:
space:
mode:
authorReverite <github@reverite.sh>2019-06-27 21:10:01 -0700
committerReverite <github@reverite.sh>2019-06-27 21:10:01 -0700
commit9861df046853b71370cede86afbba1a371714756 (patch)
tree38416f38dfc2a2349b7a5df20646bb7d0f51361f /app/services/resolve_url_service.rb
parent2d396aa3a0bf2674194b9f4c0e0a1052b8d23a06 (diff)
parentca17bae904783dfb1f4899a533d28a79da0c6fe9 (diff)
Merge branch 'glitch' into production
Diffstat (limited to 'app/services/resolve_url_service.rb')
-rw-r--r--app/services/resolve_url_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/resolve_url_service.rb b/app/services/resolve_url_service.rb
index b98759bf6..bbdc0a595 100644
--- a/app/services/resolve_url_service.rb
+++ b/app/services/resolve_url_service.rb
@@ -18,9 +18,9 @@ class ResolveURLService < BaseService
   private
 
   def process_url
-    if equals_or_includes_any?(type, %w(Application Group Organization Person Service))
+    if equals_or_includes_any?(type, ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES)
       FetchRemoteAccountService.new.call(atom_url, body, protocol)
-    elsif equals_or_includes_any?(type, %w(Note Article Image Video Page Question))
+    elsif equals_or_includes_any?(type, ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES)
       FetchRemoteStatusService.new.call(atom_url, body, protocol)
     end
   end