Skip to content

Commit

Permalink
Merge branch 'release/0.75.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Apr 11, 2024
2 parents f1ee042 + 4599542 commit dfa2e0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/ZoomNet/Models/SmsAttachmentType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public enum SmsAttachmentType
/// <summary>
/// Jpg.
/// </summary>
[EnumMember(Value = "JPG")]
[EnumMember(Value = "JPG/JPEG")]
Jpg,

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions Source/ZoomNet/Resources/Sms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public Task<PaginatedResponseWithToken<SmsMessage>> GetSmsSessionDetailsAsync(
return _client
.GetAsync($"phone/sms/sessions/{sessionId}")
.WithArgument("sort", orderAscending.HasValue ? orderAscending.Value ? 1 : 2 : null)
.WithArgument("from", from?.ToZoomFormat(dateOnly: false))
.WithArgument("to", to?.ToZoomFormat(dateOnly: false))
.WithArgument("from", from?.ToZoomFormat(timeZone: TimeZones.UTC, dateOnly: false))
.WithArgument("to", to?.ToZoomFormat(timeZone: TimeZones.UTC, dateOnly: false))
.WithArgument("page_size", recordsPerPage)
.WithArgument("next_page_token", pagingToken)
.WithCancellationToken(cancellationToken)
Expand Down

0 comments on commit dfa2e0d

Please sign in to comment.