From 2f5b205916c3204e6e4908e371b29718b7e9e730 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 6 Oct 2016 14:39:34 +0200 Subject: Catch Paperclip errors on /api/v1/media, return early from update profile service if XML given is nil --- app/services/update_remote_profile_service.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/services') 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 -- cgit