Skip to content

Commit

Permalink
Fix local jump error due to lack of block passing for recording list (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
JYorston authored Jun 20, 2023
1 parent 7d5ac7f commit 0230689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/twilio-ruby/rest/video/v1/recording.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def page(status: :unset, source_sid: :unset, grouping_sid: :unset, date_created_

'SourceSid' => source_sid,

'GroupingSid' => Twilio.serialize_list(grouping_sid),
'GroupingSid' => Twilio.serialize_list(grouping_sid) { |e| e },

'DateCreatedAfter' => Twilio.serialize_iso8601_datetime(date_created_after),

Expand Down

0 comments on commit 0230689

Please sign in to comment.