Skip to content

Commit 1b0a0a9

Browse files
author
Raja Bhatia
committed
Make conditional logic consistent with codebase (#26)]
1 parent 6d34d35 commit 1b0a0a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

message.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func requestDataForMessage(originator string, recipients []string, body string,
103103
request.MClass = 1
104104
}
105105

106-
if params.ScheduledDatetime.IsZero() == false {
106+
if !params.ScheduledDatetime.IsZero() {
107107
request.ScheduledDatetime = params.ScheduledDatetime.Format(time.RFC3339)
108108
}
109109

0 commit comments

Comments
 (0)