Skip to content

Commit

Permalink
only mark missing feeds as disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
technoweenie committed Nov 2, 2012
1 parent 1139808 commit 5a51a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/seinfeld/feed.rb
Expand Up @@ -59,7 +59,7 @@ def initialize(login, data, url = nil)
@login = login.to_s
if data.respond_to?(:body)
if !(data.success? || data.status == 304)
@disabled = true
@disabled = true if data.status == 404
@items = []
return
end
Expand Down

0 comments on commit 5a51a9a

Please sign in to comment.