1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-10 18:10:49 +09:00

[fix-filter-location-new] fix quickoption location

This commit is contained in:
Pavel Zavyalov 2022-10-26 15:51:05 +03:00
parent 10e4243bb5
commit 6ba6beb8a8
No known key found for this signature in database
GPG key ID: D12476F8A1107A26

View file

@ -7,7 +7,7 @@ var Week = Day * 7
func NewCalendar(t time.Time, loc *time.Location) Calendar {
if loc == nil {
loc = time.UTC
loc = time.Now().Location()
}
return Calendar{t:t, loc: loc}
}