diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-03-25 01:16:10 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-03-25 01:16:10 +0000 |
commit | 9b0a12780d2c1eb0ac7be25693eb3873a539a221 (patch) | |
tree | bf23fda3eec641ad931d521f2b5556b43b816764 /data/rbot/plugins | |
parent | b4d55669782d34c59688e7413402ab489bb0791e (diff) |
rss plugin: nil the mutex when dumping, to prevent cross-version marshalling problems
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r-- | data/rbot/plugins/rss.rb | 1 |
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
|