1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

Update date parser to parse more invalid date formats

This commit is contained in:
Frédéric Guillot 2023-11-01 19:26:16 +00:00
parent 500c60b807
commit e3eaaea15a
7 changed files with 15 additions and 7 deletions

View file

@ -235,7 +235,7 @@ func (r *rssItem) entryDate() time.Time {
if value != "" {
result, err := date.Parse(value)
if err != nil {
slog.Warn("Unable to parse date from RSS feed",
slog.Debug("Unable to parse date from RSS feed",
slog.String("date", value),
slog.String("guid", r.GUID.Data),
slog.Any("error", err),