Dennis Riis

Results 3 comments of Dennis Riis

Yes, it's still a problem. I get `nil` from `total_sessions`

FWIW I am solving it with this code: ``` def total_sessions_monkey(app_id, from, to, builds) model = session_count_request_model app_id, from, to, builds response = @network_client.perform_request(model) JSON.parse(response.body)["data"]["project"]["answers"]["totalSessions"].sum {|json| json["values"].sum { |v| v["value"]}...