1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Don't count the :meta entry as an object.

This commit is contained in:
Ash Wilson 2013-12-16 17:15:58 -05:00
parent 2d7b5784ed
commit 553597adad

View file

@ -44,7 +44,7 @@ module Fog
inject(0) { |sum, k| sum + files[k].bytes }
results << {
"name" => container,
"count" => files.size,
"count" => files.size - 1,
"bytes" => total
}
end