Skip to content

Commit c8dc052

Browse files
fix: don't send timezone embeded in datetime
1 parent 7b661de commit c8dc052

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zoom_integration/zoom_integration/doctype/zoom_webinar/zoom_webinar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def create_webinar_on_zoom(self):
5555
"agenda": self.agenda or self.title,
5656
"type": 5, # Scheduled webinar
5757
"duration": cint(self.duration / 60) if self.duration else 60,
58-
"start_time": format_datetime(f"{self.date} {self.start_time}", "yyyy-MM-ddTHH:mm:ssZ"),
58+
"start_time": format_datetime(f"{self.date} {self.start_time}", "yyyy-MM-ddTHH:mm:ss"),
5959
"timezone": self.timezone or "Asia/Calcutta",
6060
"settings": {
6161
"host_video": True,

0 commit comments

Comments
 (0)