mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 19:56:18 -04:00
Live telemetry
This commit is contained in:
@@ -317,11 +317,15 @@ func formatMeetingDates(m models.Meeting) string {
|
||||
if len(m.DateStart) >= 10 {
|
||||
start, _ = time.Parse("2006-01-02", m.DateStart[:10])
|
||||
}
|
||||
} else {
|
||||
start = start.Local()
|
||||
}
|
||||
if err2 != nil {
|
||||
if len(m.DateEnd) >= 10 {
|
||||
end, _ = time.Parse("2006-01-02", m.DateEnd[:10])
|
||||
}
|
||||
} else {
|
||||
end = end.Local()
|
||||
}
|
||||
|
||||
if start.Month() == end.Month() {
|
||||
|
||||
Reference in New Issue
Block a user