FIX: Do not error in excerpts when aside tag has no class attribute

This commit is contained in:
Penar Musaraj 2020-01-20 16:09:23 -05:00
parent 304dcb3eb8
commit 79f5d24571
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
@in_quote = true
end
if attributes['class'].include?('quote')
if attributes['class']&.include?('quote')
if @keep_quotes || (@keep_onebox_body && attributes['data-topic'].present?)
@in_quote = false
end