about summary refs log tree commit diff
path: root/app/services/update_remote_profile_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-06 14:39:34 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-06 14:40:15 +0200
commit2f5b205916c3204e6e4908e371b29718b7e9e730 (patch)
treee8252c6fb3194ceb243e9b314fb6fc6e093bb4a0 /app/services/update_remote_profile_service.rb
parentcdad5d322d0efb81af6efb2afe1393b9d7a47033 (diff)
Catch Paperclip errors on /api/v1/media, return early from update profile service if XML given is nil
Diffstat (limited to 'app/services/update_remote_profile_service.rb')
-rw-r--r--app/services/update_remote_profile_service.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/update_remote_profile_service.rb b/app/services/update_remote_profile_service.rb
index 5f1d3caeb..595fa4244 100644
--- a/app/services/update_remote_profile_service.rb
+++ b/app/services/update_remote_profile_service.rb
@@ -1,5 +1,7 @@
 class UpdateRemoteProfileService < BaseService
   def call(author_xml, account)
+    return if author_xml.nil?
+
     if author_xml.at_xpath('./poco:displayName').nil?
       account.display_name = account.username
     else