summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-03-25 01:16:10 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-03-25 01:16:10 +0000
commit9b0a12780d2c1eb0ac7be25693eb3873a539a221 (patch)
treebf23fda3eec641ad931d521f2b5556b43b816764 /data
parentb4d55669782d34c59688e7413402ab489bb0791e (diff)
rss plugin: nil the mutex when dumping, to prevent cross-version marshalling problems
Diffstat (limited to 'data')
-rw-r--r--data/rbot/plugins/rss.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb
index f85ccc13..698507c2 100644
--- a/data/rbot/plugins/rss.rb
+++ b/data/rbot/plugins/rss.rb
@@ -162,6 +162,7 @@ class RSSFeedsPlugin < Plugin
unparsed = Hash.new()
@feeds.each { |k, f|
unparsed[k] = f.dup
+ unparsed[k].mutex = nil
}
@registry[:feeds] = unparsed
end