Skip to content

Commit

Permalink
masking
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-plivo committed May 6, 2024
1 parent d9ca3df commit ed46ba0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/plivo/base/resource_interface.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ def perform_list(params = nil)

def perform_list_with_response(params = nil)
response_json = @_client.send_request(@_resource_uri, 'GET', params, nil, false, is_voice_request: @_is_voice_request)
parse_and_set(response_json["response"])
# parse_and_set(response_json)
{
api_id: @api_id,
meta: @_meta,
objects: @_resource_list
api_id: response_json["api_id"],
meta: response_json["response"]["meta"],
objects: parse_and_set_list(response_json["response"]["objects"])
}
end

Expand Down

0 comments on commit ed46ba0

Please sign in to comment.