summaryrefslogtreecommitdiff
path: root/lib/rss
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rss')
-rw-r--r--lib/rss/parser.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rss/parser.rb b/lib/rss/parser.rb
index 1030c8f5d4..fb6c55fb72 100644
--- a/lib/rss/parser.rb
+++ b/lib/rss/parser.rb
@@ -229,7 +229,7 @@ module RSS
ns = @ns_stack.last.dup
attrs = {}
attributes.each do |n, v|
- if n =~ /\Axmlns:?/
+ if /\Axmlns(?:\z|:)/ =~ n
ns[$POSTMATCH] = v
else
attrs[n] = v
@@ -256,6 +256,7 @@ module RSS
tags = @tag_stack.pop
pr = @proc_stack.pop
pr.call(text, tags) unless pr.nil?
+ @ns_stack.pop
end
def text(data)