[deploy] Update RssReader::Assembler#get_content hash syntax (#9255)

This commit is contained in:
Mac Siri 2020-07-10 16:45:39 -04:00 committed by GitHub
parent 628c16fd79
commit f6e2b4e034
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,7 @@ class RssReader
end
def get_content
@item.content || @item.summary || @item.description
@item[:content] || @item[:summary] || @item[:description]
end
def thorough_parsing(content, feed_url)