set ics timezone, fix #258

This commit is contained in:
lesion
2023-04-13 21:48:23 +02:00
parent 52bbf549d0
commit 71d45b36e5
2 changed files with 3 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ const exportController = {
const settings = res.locals.settings
const eventsMap = events.map(e => {
const tmpStart = DateTime.fromSeconds(e.start_datetime)
const tmpStart = DateTime.fromSeconds(e.start_datetime, { zone: settings.instance_timezone })
const start = [ tmpStart.year, tmpStart.month, tmpStart.day, tmpStart.hour, tmpStart.minute ]
const ret = {
@@ -114,7 +114,7 @@ const exportController = {
}
if (e.end_datetime) {
const tmpEnd = DateTime.fromSeconds(e.end_datetime)
const tmpEnd = DateTime.fromSeconds(e.end_datetime, { zone: settings.instance_timezone })
const end = [ tmpEnd.year, tmpEnd.month, tmpEnd.day, tmpEnd.hour, tmpEnd.minute ]
ret.end = end
}