Catch Paperclip errors on /api/v1/media, return early from update profile service if XML given is nil
This commit is contained in:
parent
cdad5d322d
commit
2f5b205916
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue