Changeset 12693

Show
Ignore:
Timestamp:
05/29/08 18:10:26 (5 years ago)
Author:
seasons
Message:

リトライ処理を修正しました。

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/twitterarchivefilter/twitterarchivefilter.rb

    r11257 r12693  
    117117      html = getPageArchive( nextlink ) 
    118118      items = getItems( html ) 
    119       next unless items or items[:messages] or items[:times] #=> Retry if failed get items... 
     119      next unless ( items and items[:messages] and items[:times] ) #=> Retry if failed get items... 
    120120      addItems( items ) 
    121121      nextlink = getNextLink( html )