mayswind
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
models/action.go
|
|
@ -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 { |
|
|
|