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 eb85dd4 commit 3097880Copy full SHA for 3097880
lib/feedkit/parser/xml_entry.rb
@@ -4,7 +4,7 @@ module Feedkit
4
module Parser
5
class XMLEntry < Entry
6
def entry_id
7
- @entry.entry_id ? @entry.entry_id.strip : nil
+ @entry.entry_id.respond_to?(:strip) ? @entry.entry_id.strip : nil
8
end
9
10
def author
0 commit comments