We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46ed119 commit 11c54d3Copy full SHA for 11c54d3
lib/esdb/match.rb
@@ -6,7 +6,7 @@ def summaries?
6
hash = self.to_hash
7
if hash['entities'].any?
8
summaries = hash['entities'].collect{|e| e['summary']}
9
- return summaries.reject{|s| s.empty? || s.nil?}.any?
+ return summaries.reject{|s| s.nil? || s.empty?}.any?
10
end
11
false
12
0 commit comments