Skip to content

Commit 331b858

Browse files
committed
Export start-list datetime in current time zone
1 parent 8047676 commit 331b858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickevent/app/quickevent/plugins/Runs/src/runsplugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2497,8 +2497,8 @@ QString RunsPlugin::startListStageIofXml30(int stage_id)
24972497
append_list(xml_event, QVariantList{"Name", event_config->eventName()});
24982498
append_list(xml_event,
24992499
QVariantList{"StartTime",
2500-
QVariantList{"Date", event.value("date")},
2501-
QVariantList{"Time", event.value("time")}
2500+
QVariantList{"Date", start00.date().toString(Qt::ISODate)},
2501+
QVariantList{"Time", start00.time().toString(Qt::ISODate)}
25022502
}
25032503
);
25042504
append_list(xml_event,

0 commit comments

Comments
 (0)