[script] Correct total of App Store apps

This commit is contained in:
Daniel Khamsing 2017-06-21 09:35:19 -07:00
parent 1cb66559bd
commit 86ff851741
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ end
def app_store_total(j)
apps = j['projects']
s = apps.select { |x| x['itunes'].nil? }
s = apps.reject { |x| x['itunes'].nil? }
count = 1
count = 1
s.each do |x|
tags = x['tags']
if tags.nil?