about summary refs log tree commit diff
path: root/app/services/concerns/author_extractor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/concerns/author_extractor.rb')
-rw-r--r--app/services/concerns/author_extractor.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/concerns/author_extractor.rb b/app/services/concerns/author_extractor.rb
index d99780e7d..71bd32f37 100644
--- a/app/services/concerns/author_extractor.rb
+++ b/app/services/concerns/author_extractor.rb
@@ -2,6 +2,8 @@
 
 module AuthorExtractor
   def author_from_xml(xml)
+    return nil if xml.nil?
+
     # Try <email> for acct
     acct = xml.at_xpath('./xmlns:author/xmlns:email', xmlns: TagManager::XMLNS)&.content