Skip to content

Commit

Permalink
update mkdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
grokify committed Sep 27, 2015
1 parent 985c39c commit 0be69e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/usage/messages/Call-Recordings.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ response.body['records'].each do |record|
# Save call recording
filenameMp3 = 'recording_' + record['id'] + '.mp3'
File.open(filenameMp3, 'wb') { |fp| fp.write(response_file.body) }
# Save call log record (call recording metadata)
# Save call log record (call recording metadata) using 'json'
filenameJson = 'recording_' + record['id'] + '.json'
File.open(filenameJson, 'wb') { |fp| fp.write(record.to_json) }
end
Expand Down

0 comments on commit 0be69e8

Please sign in to comment.