Skip to content

Commit

Permalink
fix possible bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bmizerany committed Feb 8, 2011
1 parent fafc75e commit 08877f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fraggle/client.rb
Expand Up @@ -231,7 +231,7 @@ def post_init

waw = Proc.new do |e|
get 0, "/doozer/info/#{e.value}/public-addr" do |a|
next if a.value == "" || a.value == @addr
next if a.value.to_s == "" || a.value == @addr
@addrs[e.path] = a.value
@log.debug("added #{e.path} addr #{a.value}")
end
Expand Down

0 comments on commit 08877f6

Please sign in to comment.