diff options
Diffstat (limited to 'lib')
| -rwxr-xr-x | lib/custodian/webfetch.rb | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/lib/custodian/webfetch.rb b/lib/custodian/webfetch.rb index 5c04b31..0b5f9c6 100755 --- a/lib/custodian/webfetch.rb +++ b/lib/custodian/webfetch.rb @@ -59,10 +59,11 @@ class WebFetch      # -    # If both files are size zero then we clearly failed. +    # If the header was empty then we're a failure.      # -    if ( ( File.size( body ) == 0 ) || -         ( File.size( head ) == 0 ) ) +    # (A body might be legitimately empty.) +    # +    if ( File.size( head ) == 0 )        #        # Cleanup | 
