diff options
Diffstat (limited to '')
-rw-r--r-- | lib/feed2imap/feed2imap.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/feed2imap/feed2imap.rb b/lib/feed2imap/feed2imap.rb index a8fd1fb..c7d8a2a 100644 --- a/lib/feed2imap/feed2imap.rb +++ b/lib/feed2imap/feed2imap.rb @@ -102,8 +102,7 @@ class Feed2Imap ths = [] mutex = Mutex::new @config.feeds.each do |f| - ths << Thread::new do - url = f.url + ths << Thread::new(f) do begin mutex.lock lastcheck = @cache.get_last_check(f.name) @@ -126,11 +125,11 @@ class Feed2Imap end rescue Timeout::Error mutex.synchronize do - @logger.fatal("Timeout::Error while fetching #{url}: #{$!}") + @logger.fatal("Timeout::Error while fetching #{f.url}: #{$!}") end rescue mutex.synchronize do - @logger.fatal("Error while fetching #{url}: #{$!}") + @logger.fatal("Error while fetching #{f.url}: #{$!}") end end end |