Skip to content

Commit 96478cb

Browse files
committed
Adjustments
1 parent 47e27e3 commit 96478cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/zoom/actions/list-call-recordings/list-call-recordings.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default {
2222
endDate: {
2323
type: "string",
2424
label: "End Date",
25-
description: "The end date/time in `yyyy-mm-dd` or `yyyy-MM-ddTHH:mm:ssZ` format. Calls made after `Start Date` and before `End Date` will be retrieved.",
25+
description: "The end date/time in `yyyy-mm-dd` or `yyyy-MM-ddTHH:mm:ssZ` format. Calls made after `Start Date` and before `End Date` will be retrieved. Date range should be a maximum of 30 days.",
2626
optional: true,
2727
},
2828
max: {
@@ -47,7 +47,7 @@ export default {
4747
}
4848
date.setDate(date.getDate() - 30);
4949
to = date.toISOString();
50-
if (startDate.split("T")[1]) {
50+
if (!startDate.split("T")[1]) {
5151
to = to.split("T")[0];
5252
}
5353
}

0 commit comments

Comments
 (0)