mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
Fix timezone bug when clicking heatmap (#15141)
This commit is contained in:
parent
007fb00c0e
commit
9b316a327e
@ -382,7 +382,7 @@ func activityQueryCondition(opts GetFeedsOptions) (builder.Cond, error) {
|
||||
}
|
||||
|
||||
if opts.Date != "" {
|
||||
dateLow, err := time.Parse("2006-01-02", opts.Date)
|
||||
dateLow, err := time.ParseInLocation("2006-01-02", opts.Date, setting.DefaultUILocation)
|
||||
if err != nil {
|
||||
log.Warn("Unable to parse %s, filter not applied: %v", opts.Date, err)
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user